Skip to content

Commit dd0e779

Browse files
authored
Drop the additional numpy 1.16 test (#778)
* Drop the additional numpy 1.16 test see: * #774 which drops Python 3.6 * #749 which bumps h5py to 3.2 * Test numpy 1.17 as the 'old' version
1 parent f6338b7 commit dd0e779

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
python-version: [3.7, 3.8]
19-
numpy_version: ['==1.16.4', '']
19+
numpy_version: ['', '==1.17.*']
2020
services:
2121
redis:
2222
image: redis

tox.ini

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py37-npy{115,116,latest}, py38, docs
7+
envlist = py37-npy{117,latest}, py38, docs
88

99
[testenv]
1010
install_command = pip install --no-binary=numcodecs {opts} {packages}
@@ -20,7 +20,7 @@ commands =
2020
# main unit test runner
2121
py38: pytest -v --cov=zarr --cov-config=.coveragerc zarr
2222
# don't collect coverage when running older numpy versions
23-
py37-{npy115,npy116}: pytest -v zarr
23+
py37-npy117: pytest -v zarr
2424
# collect coverage and run doctests under py37
2525
py37-npylatest: pytest -v --cov=zarr --cov-config=.coveragerc --doctest-plus zarr --remote-data
2626
# generate a coverage report
@@ -32,8 +32,7 @@ commands =
3232
# print environment for debugging
3333
pip freeze
3434
deps =
35-
py37-npy115: numpy==1.15.4
36-
py37-npy116: numpy==1.16.4
35+
py37-npy117: numpy==1.17.*
3736
py37-npylatest,py38: -rrequirements_dev_numpy.txt
3837
-rrequirements_dev_minimal.txt
3938
-rrequirements_dev_optional.txt

0 commit comments

Comments
 (0)