Skip to content

Commit

Permalink
add notes about keeping the lowest supported numpy version in sync wi…
Browse files Browse the repository at this point in the history
…th the CI
  • Loading branch information
aryarm authored and brentp committed Jun 18, 2024
1 parent 22ccd3e commit 1c2f6fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ jobs:
run: |
pytest --cov cyvcf2 --cov-report term-missing
# make sure to keep this numpy version in sync with setup.py
- name: Test with oldest numpy that we support
if: contains(fromJson('["3.7"]'), matrix.python-version)
run: |
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ def run(self):
],
),
python_requires=">=3.7",
# make sure to keep this numpy version in sync with build.yml
install_requires=["numpy>=1.16.0", "coloredlogs", "click"],
include_package_data=True,
zip_safe=False,
Expand Down

0 comments on commit 1c2f6fe

Please sign in to comment.