Skip to content

Commit 75161e5

Browse files
committed
exclude numpy 1.17 on Pyhton 3.9
1 parent 68a3a8f commit 75161e5

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/tests.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,16 @@ jobs:
99
run:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
12-
fail-fast: false
1312
matrix:
13+
python-version: ["3.7", "3.8", "3.9"]
1414
os: [windows-latest, ubuntu-latest, macos-latest]
15-
python-version: ["3.7", "3.8"]
1615
# Oldest one based on NEP-29 and latest one.
1716
# See https://numpy.org/neps/nep-0029-deprecation_policy.html
1817
numpy-version: ["1.17", "1.20"]
19-
include:
18+
exclude:
2019
- python-version: "3.9"
21-
numpy-version: "1.20"
22-
20+
numpy-version: "1.17"
21+
2322
steps:
2423
- uses: actions/checkout@v2
2524

0 commit comments

Comments
 (0)