From e33a9cb376af651631a3a12c5c12da11bcdcb9c2 Mon Sep 17 00:00:00 2001 From: Tess Hayes Date: Tue, 18 Jun 2024 17:12:17 -0400 Subject: [PATCH] Closes #3343: Pin `numpy < 2.0` to avoid CI failures This PR (closes #3343) pins `numpy < 2.0` to avoid CI failures --- arkouda-env-dev.yml | 2 +- arkouda-env.yml | 2 +- pydoc/requirements.txt | 2 +- pydoc/setup/REQUIREMENTS.md | 2 +- setup.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/arkouda-env-dev.yml b/arkouda-env-dev.yml index 7f456b9d26..fdb1fc3d4a 100644 --- a/arkouda-env-dev.yml +++ b/arkouda-env-dev.yml @@ -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 diff --git a/arkouda-env.yml b/arkouda-env.yml index a1214ff7df..1519d5a7b9 100644 --- a/arkouda-env.yml +++ b/arkouda-env.yml @@ -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 diff --git a/pydoc/requirements.txt b/pydoc/requirements.txt index 705b32acab..ce75e992de 100644 --- a/pydoc/requirements.txt +++ b/pydoc/requirements.txt @@ -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 diff --git a/pydoc/setup/REQUIREMENTS.md b/pydoc/setup/REQUIREMENTS.md index 523ab14dfc..42a4229765 100644 --- a/pydoc/setup/REQUIREMENTS.md +++ b/pydoc/setup/REQUIREMENTS.md @@ -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` diff --git a/setup.py b/setup.py index 96c2fca1b7..9892ef9fde 100644 --- a/setup.py +++ b/setup.py @@ -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",