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

Update min versions for numpy, pandas, dask and woodwork #2681

Merged
merged 9 commits into from
Feb 26, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Future Release
* Enhancements
* Fixes
* Changes
* Update min requirements for numpy, pandas and Woodwork (:pr:`2681`)
* Documentation Changes
* Testing Changes
* Update ``make_ecommerce_entityset`` to work without Dask (:pr:`2677`)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
cloudpickle==1.5.0
holidays==0.17
numpy==1.21.0
numpy==1.25.0
packaging==20.0
pandas==1.5.0
psutil==5.6.6
pandas==2.0.0
psutil==5.7.0
scipy==1.10.0
tqdm==4.32.0
woodwork==0.23.0
woodwork==0.28.0
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
cloudpickle==1.5.0
dask[dataframe]==2022.11.1
distributed==2022.11.1
dask[dataframe]==2023.2.0
distributed==2023.2.0
holidays==0.17
numpy==1.21.0
numpy==1.25.0
packaging==20.0
pandas==1.5.0
psutil==5.6.6
pandas==2.0.0
psutil==5.7.0
scipy==1.10.0
tqdm==4.32.0
woodwork==0.23.0
woodwork[dask]==0.23.0
woodwork==0.28.0
woodwork[dask]==0.28.0
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ requires-python = ">=3.9,<4"
dependencies = [
"cloudpickle >= 1.5.0",
"holidays >= 0.17",
"numpy >= 1.21.0",
"numpy >= 1.25.0",
thehomebrewnerd marked this conversation as resolved.
Show resolved Hide resolved
"packaging >= 20.0",
"pandas >= 1.5.0",
"psutil >= 5.6.6",
"pandas >= 2.0.0",
"psutil >= 5.7.0",
"scipy >= 1.10.0",
"tqdm >= 4.32.0",
"woodwork >= 0.23.0",
"woodwork >= 0.28.0",
]

[project.urls]
Expand Down Expand Up @@ -65,9 +65,9 @@ test = [
"pytest-timeout >= 2.1.0"
]
dask = [
"dask[dataframe] >= 2022.11.1",
"distributed >= 2022.11.1",
"woodwork[dask] >= 0.23.0",
"dask[dataframe] >= 2023.2.0",
"distributed >= 2023.2.0",
"woodwork[dask] >= 0.28.0",
]
spark = [
"woodwork[spark] >= 0.28.0",
Expand Down
Loading