Skip to content

Commit

Permalink
lower numpy requirement to 1.16 since that's the oldest version that …
Browse files Browse the repository at this point in the history
…works with py3.7
  • Loading branch information
aryarm authored and brentp committed Jun 18, 2024
1 parent d2371b1 commit 22ccd3e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ jobs:
pytest --cov cyvcf2 --cov-report term-missing
- name: Test with oldest numpy that we support
if: contains(fromJson('["3.7", "3.8", "3.9"]'), matrix.python-version)
if: contains(fromJson('["3.7"]'), matrix.python-version)
run: |
pip install --force-reinstall --no-cache-dir 'numpy==1.20.3'
pip install --force-reinstall --no-cache-dir 'numpy==1.16.0'
pytest --cov cyvcf2 --cov-report term-missing
- name: Test with newest available numpy
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def run(self):
],
),
python_requires=">=3.7",
install_requires=["numpy>=1.20.3", "coloredlogs", "click"],
install_requires=["numpy>=1.16.0", "coloredlogs", "click"],
include_package_data=True,
zip_safe=False,
cmdclass={
Expand Down

0 comments on commit 22ccd3e

Please sign in to comment.