Skip to content

Commit

Permalink
FIX-#7302: Pin numpy<2
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <[email protected]>
  • Loading branch information
anmyachev committed Jun 10, 2024
1 parent 51b0a78 commit 072453b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion environment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies:

# required dependencies
- pandas>=2.2,<2.3
- numpy>=1.22.4
- numpy>=1.22.4,<2
- fsspec>=2022.11.0
- packaging>=21.0
- psutil>=5.8.0
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## required dependencies
pandas>=2.2,<2.3
numpy>=1.22.4
numpy>=1.22.4,<2
fsspec>=2022.11.0
packaging>=21.0
psutil>=5.8.0
Expand Down
2 changes: 1 addition & 1 deletion requirements/env_hdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies:

# required dependencies
- pandas>=2.2,<2.3
- numpy>=1.22.4
- numpy>=1.22.4,<2
- pyhdk==0.9
- fsspec>=2022.11.0
- packaging>=21.0
Expand Down
2 changes: 1 addition & 1 deletion requirements/env_unidist_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies:

# required dependencies
- pandas>=2.2,<2.3
- numpy>=1.22.4
- numpy>=1.22.4,<2
- unidist-mpi>=0.2.1
- mpich
- fsspec>=2022.11.0
Expand Down
2 changes: 1 addition & 1 deletion requirements/env_unidist_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies:

# required dependencies
- pandas>=2.2,<2.3
- numpy>=1.22.4
- numpy>=1.22.4,<2
- unidist-mpi>=0.2.1
- msmpi
- fsspec>=2022.11.0
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements-no-engine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dependencies:

# required dependencies
- pandas>=2.2,<2.3
- numpy>=1.22.4
- numpy>=1.22.4,<2
- fsspec>=2022.11.0
- packaging>=21.0
- psutil>=5.8.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def make_distribution(self):
install_requires=[
"pandas>=2.2,<2.3",
"packaging>=21.0",
"numpy>=1.22.4",
"numpy>=1.22.4,<2",
"fsspec>=2022.11.0",
"psutil>=5.8.0",
],
Expand Down

0 comments on commit 072453b

Please sign in to comment.