Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closes #3343: Pin numpy < 2.0 to avoid CI failures #3344

Merged
merged 1 commit into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading