Skip to content

Commit

Permalink
FIX-#3569: Update pandas to 1.3.4 (#3570)
Browse files Browse the repository at this point in the history
Signed-off-by: Igoshev, Yaroslav <yaroslav.igoshev@intel.com>
  • Loading branch information
YarShev authored Oct 19, 2021
1 parent adc15c6 commit 0f944a1
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.3
- pandas==1.3.4
- 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.3"
__pandas_version__ = "1.3.4"

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.3
pandas==1.3.4
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 @@ -2,7 +2,7 @@ name: modin_on_omnisci
channels:
- conda-forge
dependencies:
- pandas==1.3.3
- pandas==1.3.4
- pyarrow==3.0.0
- libthrift
- 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.3
- pandas==1.3.4
- numpy>=1.16.5
- pyarrow>=1.0.0
- fsspec
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.3", "packaging", "numpy>=1.16.5", "fsspec"],
install_requires=["pandas==1.3.4", "packaging", "numpy>=1.16.5", "fsspec"],
extras_require={
# can be installed by pip install modin[dask]
"dask": dask_deps,
Expand Down

0 comments on commit 0f944a1

Please sign in to comment.