Skip to content

Commit

Permalink
FEAT-#5559: Upgrade pandas to 1.5.3 (#5560)
Browse files Browse the repository at this point in the history
Signed-off-by: Igoshev, Iaroslav <iaroslav.igoshev@intel.com>
  • Loading branch information
YarShev authored and vnlitvinov committed Jan 24, 2023
1 parent f0236d9 commit 2a90683
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 @@ -2,7 +2,7 @@ name: modin
channels:
- conda-forge
dependencies:
- pandas==1.5.2
- pandas==1.5.3
- numpy>=1.18.5
- ray-default>=1.13.0
- pyarrow
Expand Down
2 changes: 1 addition & 1 deletion modin/pandas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import pandas
import warnings

__pandas_version__ = "1.5.2"
__pandas_version__ = "1.5.3"

if pandas.__version__ != __pandas_version__:
warnings.warn(
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==1.5.2
pandas==1.5.3
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==1.5.2
- pandas==1.5.3
- pyarrow=8
- 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==1.5.2
- pandas==1.5.3
- 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==1.5.2
- pandas==1.5.3
- numpy>=1.18.5
- pyarrow>=4.0.1
- 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==1.5.2",
"pandas==1.5.3",
"packaging",
"numpy>=1.18.5",
"fsspec",
Expand Down

0 comments on commit 2a90683

Please sign in to comment.