Skip to content

Commit

Permalink
Closes #3343: Pin numpy < 2.0 to avoid CI failures (#3344)
Browse files Browse the repository at this point in the history
This PR (closes #3343) pins `numpy < 2.0` to avoid CI failures

Co-authored-by: Tess Hayes <[email protected]>
  • Loading branch information
stress-tess and stress-tess authored Jun 19, 2024
1 parent 416cb90 commit b217eaf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion arkouda-env-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ channels:
- defaults
dependencies:
- python>=3.8 # minimum 3.8
- numpy>=1.24.1
- numpy>=1.24.1,<2.0
- pandas>=1.4.0,!=2.2.0
- pyzmq>=20.0.0
- tabulate
Expand Down
2 changes: 1 addition & 1 deletion arkouda-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ channels:
- defaults
dependencies:
- python>=3.8 # minimum 3.8
- numpy>=1.24.1
- numpy>=1.24.1,<2.0
- pandas>=1.4.0,!=2.2.0
- pyzmq>=20.0.0
- tabulate
Expand Down
2 changes: 1 addition & 1 deletion pydoc/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# dependencies
python>=3.8
numpy>=1.24.1
numpy>=1.24.1,<2.0
pandas>=1.4.0,!=2.2.0
pyzmq>=20.0.0
typeguard==2.10.0
Expand Down
2 changes: 1 addition & 1 deletion pydoc/setup/REQUIREMENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The installation instructions for the dependencies listed here may vary dependin
The following python packages are required by the Arkouda client package.

- `python>=3.8`
- `numpy>=1.24.1`
- `numpy>=1.24.1,<2.0`
- `pandas>=1.4.0,!=2.2.0`
- `pyzmq>=20.0.0`
- `typeguard==2.10.0`
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
# For an analysis of "install_requires" vs pip's requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=[
"numpy>=1.24.1",
"numpy>=1.24.1,<2.0",
"pandas>=1.4.0,!=2.2.0",
"pyzmq>=20.0.0",
"typeguard==2.10.0",
Expand Down

0 comments on commit b217eaf

Please sign in to comment.