Skip to content

Commit

Permalink
FEAT-#4598: Add support for pandas 1.4.3 (#4599)
Browse files Browse the repository at this point in the history
Signed-off-by: Rehan Durrani <rehan@ponder.io>
  • Loading branch information
RehanSD committed Jun 23, 2022
1 parent 728d5ec commit 53ca4f3
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
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

0 comments on commit 53ca4f3

Please sign in to comment.