Skip to content

Commit

Permalink
FIX-#2524: Update pandas version to 1.1.5 (#2525)
Browse files Browse the repository at this point in the history
Signed-off-by: Igoshev, Yaroslav <yaroslav.igoshev@intel.com>
  • Loading branch information
YarShev committed Dec 10, 2020
1 parent ecd41e5 commit ebbb6b2
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion asv_bench/asv.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
// pip (with all the conda available packages installed first,
// followed by the pip installed packages).
"matrix": {
"pandas": ["1.1.4"],
"pandas": ["1.1.5"],
"packaging": [""],
"pip+ray": ["1.0.1"],
"pyarrow": ["1.0"]
Expand Down
2 changes: 1 addition & 1 deletion environment.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.1.4
- pandas==1.1.5
- numpy
- 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.1.4"
__pandas_version__ = "1.1.5"

if pandas.__version__ != __pandas_version__:
import warnings
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pandas==1.1.4
pandas==1.1.5
numpy
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.1.4
- pandas==1.1.5
- pyarrow>=1.0.0
- numpy
- 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.1.4", "packaging"],
install_requires=["pandas==1.1.5", "packaging"],
extras_require={
# can be installed by pip install modin[dask]
"dask": dask_deps,
Expand Down

0 comments on commit ebbb6b2

Please sign in to comment.