We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68a3a8f commit 75161e5Copy full SHA for 75161e5
1 file changed
.github/workflows/tests.yml
@@ -9,17 +9,16 @@ jobs:
9
run:
10
runs-on: ${{ matrix.os }}
11
strategy:
12
- fail-fast: false
13
matrix:
+ python-version: ["3.7", "3.8", "3.9"]
14
os: [windows-latest, ubuntu-latest, macos-latest]
15
- python-version: ["3.7", "3.8"]
16
# Oldest one based on NEP-29 and latest one.
17
# See https://numpy.org/neps/nep-0029-deprecation_policy.html
18
numpy-version: ["1.17", "1.20"]
19
- include:
+ exclude:
20
- python-version: "3.9"
21
- numpy-version: "1.20"
22
-
+ numpy-version: "1.17"
+
23
steps:
24
- uses: actions/checkout@v2
25
0 commit comments