forked from zarr-developers/zarr-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Maintenance on tests, CI and contributor docs (zarr-developers#468)
* upgrade latest numpy, add previous numpys to tox matrix * simplify requirements using environment markers * tweak environment markers * no npy117 for py27 * upgrade pinnings * try upgrading build image * appveyor thrash * numpy 1.16 on py27 * numpy 1.16 on py27 * test with less numpys * downgrade to try if solves emulator compat * tidy up tox [ci skip] * release notes [ci skip] * remove requirements.txt, not needed * remove requirements.txt, not needed * rework requirements so easier to run tests without services * fix pyup config * use doctestplus * use pytest-remotedata * pytest 5 not on py27 * deal with numpy argument change in unravel_index * deal with packages not on py27 * rework running of service tests using environment variables * use global variables for travis * update pyup * update pyup
- Loading branch information
Showing
18 changed files
with
188 additions
and
185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# library requirements | ||
asciitree==0.3.3 | ||
fasteners==0.15 | ||
numcodecs==0.6.3 | ||
msgpack-python==0.5.6 | ||
setuptools-scm==3.3.3 | ||
# test requirements | ||
pytest==5.0.1; python_version > '3.0' | ||
pytest==4.6.5; python_version < '3.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# Break this out into a separate file to allow testing against | ||
# different versions of numpy. This file should pin to the latest | ||
# numpy version. | ||
numpy==1.15.4 | ||
numpy==1.17.0; python_version > '3.0' | ||
numpy==1.16.4; python_version < '3.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,17 @@ | ||
# These packages are currently not available on Windows. | ||
bsddb3==6.2.6 | ||
lmdb==0.94 | ||
redis==3.0.1 | ||
pymongo==3.7.1 | ||
# optional library requirements | ||
bsddb3==6.2.6; sys_platform != 'win32' | ||
lmdb==0.97; sys_platform != 'win32' | ||
# optional library requirements for services | ||
azure-storage-blob==2.0.1 | ||
redis==3.3.6 | ||
pymongo==3.8.0 | ||
# optional test requirements | ||
tox==3.13.2 | ||
coverage==4.5.4 | ||
coveralls==1.8.2 | ||
flake8==3.7.8 | ||
pytest-cov==2.7.1 | ||
pytest-doctestplus==0.3.0 | ||
pytest-remotedata==0.3.2 | ||
h5py==2.9.0 | ||
s3fs==0.3.3; python_version > '3.0' |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.