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

FEAT-#4598: Add support for pandas 1.4.3 #4599

Merged
merged 3 commits into from
Jun 23, 2022
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
3 changes: 2 additions & 1 deletion docs/release_notes/release_notes-0.16.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Key Features and Updates
* Documentation improvements
* DOCS-#4552: Change default sphinx language to en to fix sphinx >= 5.0.0 build (#4553)
* Dependencies
*
* FEAT-#4598: Add support for pandas 1.4.3 (#4599)
* New Features
* FEAT-4463: Add experimental fuzzydata integration for testing against a randomized dataframe workflow (#4556)

Expand All @@ -44,3 +44,4 @@ Contributors
@vnlitvinov
@pyrito
@suhailrehman
@RehanSD
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.4.2
- pandas==1.4.3
- numpy>=1.18.5
- pyarrow>=4.0.1
- dask[complete]>=2.22.0,<2022.2.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 @@ -14,7 +14,7 @@
import pandas
import warnings

__pandas_version__ = "1.4.2"
__pandas_version__ = "1.4.3"

if pandas.__version__ != __pandas_version__:
warnings.warn(
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.4.2
pandas==1.4.3
numpy>=1.18.5
pyarrow>=4.0.1
dask[complete]>=2.22.0,<2022.2.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.4.2
- pandas==1.4.3
- pyarrow=6
- numpy>=1.18.5
- fsspec
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.4.2
- pandas==1.4.3
- numpy>=1.18.5
- pyarrow>=4.0.1
- fsspec
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
url="https://github.com/modin-project/modin",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["pandas==1.4.2", "packaging", "numpy>=1.18.5", "fsspec", "psutil"],
install_requires=["pandas==1.4.3", "packaging", "numpy>=1.18.5", "fsspec", "psutil"],
extras_require={
# can be installed by pip install modin[dask]
"dask": dask_deps,
Expand Down