Skip to content

Commit 2f42baa

Browse files
committed
TST/MAINT: Save running costs by only testing against default version of NumPy
1 parent 157584a commit 2f42baa

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ jobs:
1010
max-parallel: 4
1111
matrix:
1212
python-version: ["3.7", "3.8", "3.9", "3.10"]
13-
numpy-version: ["1.20", "1.21", "1.22", "1.23"]
1413

1514
steps:
1615
- uses: actions/checkout@v3
@@ -21,7 +20,7 @@ jobs:
2120
- name: Install dependencies
2221
run: |
2322
python -m pip install --upgrade pip
24-
pip install numpy==${{ matrix.numpy-version }}
23+
pip install numpy
2524
- name: Lint with flake8
2625
run: |
2726
pip install flake8

0 commit comments

Comments
 (0)