Skip to content

Commit

Permalink
Merge pull request #443 from vsnever/fix/numpy_version
Browse files Browse the repository at this point in the history
Restrict the version of NumPy to 1.x until Raysect binaries built with NumPy 2 are available
  • Loading branch information
jacklovell authored Jul 11, 2024
2 parents b3cc6ad + 422abfb commit d033dd1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
numpy-version: ["oldest-supported-numpy", "numpy"]
numpy-version: ["oldest-supported-numpy", "'numpy<2'"]
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cython>=0.28
numpy>=1.14
numpy>=1.14,<2.0
scipy
matplotlib
raysect==0.8.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"numpy>=1.14",
"numpy>=1.14,<2.0",
"scipy",
"matplotlib",
"raysect==0.8.1",
Expand Down

0 comments on commit d033dd1

Please sign in to comment.