Skip to content

Commit

Permalink
FIX-#3371: Remove pandas patch level pin (#6211)
Browse files Browse the repository at this point in the history
Co-authored-by: Anatoly Myachev <[email protected]>
Signed-off-by: mvashishtha <[email protected]>
  • Loading branch information
mvashishtha and anmyachev authored Jun 9, 2023
1 parent 145b741 commit af11ce6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion environment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: modin
channels:
- conda-forge
dependencies:
- pandas==2.0.2
- pandas>=2,<2.1
- numpy>=1.18.5
- ray-default>=1.13.0
- pyarrow
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pandas==2.0.2
pandas>=2,<2.1
numpy>=1.18.5
dask[complete]>=2.22.0
distributed>=2.22.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 @@ -2,7 +2,7 @@ name: modin_on_hdk
channels:
- conda-forge
dependencies:
- pandas==2.0.2
- pandas>=2,<2.1
- pyarrow
- numpy>=1.18.5
- fsspec
Expand Down
2 changes: 1 addition & 1 deletion requirements/env_unidist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
dependencies:
- unidist-mpi>=0.2.1
- pandas==2.0.2
- pandas>=2,<2.1
- numpy>=1.18.5
- pyarrow
- fsspec
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements-no-engine.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
channels:
- conda-forge
dependencies:
- pandas==2.0.2
- pandas>=2,<2.1
- numpy>=1.18.5
- pyarrow
- fsspec
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def make_distribution(self):
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"pandas==2.0.2",
"pandas>=2,<2.1",
"packaging",
"numpy>=1.18.5",
"fsspec",
Expand Down

0 comments on commit af11ce6

Please sign in to comment.