Skip to content

Commit

Permalink
FIX-modin-project#3342: Update pandas to 1.3.2
Browse files Browse the repository at this point in the history
Signed-off-by: Igoshev, Yaroslav <[email protected]>
  • Loading branch information
YarShev authored and anmyachev committed Aug 19, 2021
1 parent 0a78bef commit bfe1bd6
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==1.3.1
- pandas==1.3.2
- numpy>=1.16.5
- pyarrow>=1.0.0
- libthrift<0.14.1 # ref: modin gh-2840
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.3.1"
__pandas_version__ = "1.3.2"

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.3.1
pandas==1.3.2
numpy>=1.16.5
pyarrow>=1.0.0
dask[complete]>=2.22.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/modintest
- conda-forge
dependencies:
- pandas==1.3.1
- pandas==1.3.2
- pyarrow==2.0.0
- libthrift<0.14.1 # ref: modin gh-2840
- numpy>=1.16.5
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.3.1
- pandas==1.3.2
- numpy>=1.16.5
- pyarrow>=1.0.0
- xarray
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,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.3.1", "packaging", "numpy>=1.16.5"],
install_requires=["pandas==1.3.2", "packaging", "numpy>=1.16.5"],
extras_require={
# can be installed by pip install modin[dask]
"dask": dask_deps,
Expand Down

0 comments on commit bfe1bd6

Please sign in to comment.