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

FIX-#2795: Update pandas to 1.2.3 #2799

Merged
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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.2.2
- pandas==1.2.3
- numpy>=1.16.5,<1.20 # pandas gh-39513
- pyarrow>=1.0.0
- dask[complete]>=2.12.0,<=2.19.0
Expand Down
2 changes: 1 addition & 1 deletion modin/pandas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

import pandas

__pandas_version__ = "1.2.2"
__pandas_version__ = "1.2.3"

if pandas.__version__ != __pandas_version__:
import warnings
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.2.2
pandas==1.2.3
numpy>=1.16.5,<1.20 # pandas gh-39513
pyarrow>=1.0.0
dask[complete]>=2.12.0,<=2.19.0
Expand Down
2 changes: 1 addition & 1 deletion requirements/env_omnisci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- intel/label/modin
- conda-forge
dependencies:
- pandas==1.2.2
- pandas==1.2.3
- pyarrow==1.0.0
- numpy>=1.16.5,<1.20 # pandas gh-39513
- pip
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def is_pure(self):
url="https://github.com/modin-project/modin",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["pandas==1.2.2", "packaging", "numpy>=1.16.5,<1.20"],
install_requires=["pandas==1.2.3", "packaging", "numpy>=1.16.5,<1.20"],
extras_require={
# can be installed by pip install modin[dask]
"dask": dask_deps,
Expand Down