Skip to content

Commit

Permalink
Upgrade to pandas 0.25.3 (#860)
Browse files Browse the repository at this point in the history
* Upgrade to pandas 0.25.3

* Resolves #859

* Fix requirements.txt
  • Loading branch information
devin-petersohn authored Nov 5, 2019
1 parent cb219ca commit 8549c6b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modin/pandas/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pandas

__pandas_version__ = "0.25.2"
__pandas_version__ = "0.25.3"

if pandas.__version__ != __pandas_version__:
raise ImportError(
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==0.25.2
pandas==0.25.3
numpy
dask[complete]>=2.1.0
distributed>=2.3.2
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
url="https://github.com/modin-project/modin",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["pandas==0.25.2"],
install_requires=["pandas==0.25.3"],
extras_require={
# can be installed by pip install modin[dask]
"dask": dask_deps,
Expand Down

0 comments on commit 8549c6b

Please sign in to comment.