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

Bump pip and tqdm versions #2716

Merged
merged 3 commits into from
May 7, 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 @@ -12,6 +12,7 @@ Future Release
* Changes
* Temporarily restrict Dask version (:pr:`2694`)
* Remove support for creating ``EntitySets`` from Dask or Pyspark dataframes (:pr:`2705`)
* Bump minimum versions of ``tqdm`` and ``pip`` in requirements files (:pr:`2716`)
* Documentation Changes
* Testing Changes
* Fix serialization test to work with pytest 8.1.1 (:pr:`2694`)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ packaging==20.0
pandas==2.0.0
psutil==5.7.0
scipy==1.10.0
tqdm==4.32.0
tqdm==4.66.3
woodwork==0.28.0
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ packaging==20.0
pandas==2.0.0
psutil==5.7.0
scipy==1.10.0
tqdm==4.32.0
tqdm==4.66.3
woodwork==0.28.0
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ moto[all]==5.0.0
numpy==1.25.0
packaging==20.0
pandas==2.0.0
pip==21.3.1
pip==23.3.0
psutil==5.7.0
pyarrow==14.0.1
pympler==0.8
Expand All @@ -17,6 +17,6 @@ pytest-xdist==2.5.0
pytest==7.1.2
scipy==1.10.0
smart-open==5.0.0
tqdm==4.32.0
tqdm==4.66.3
urllib3==1.26.18
woodwork==0.28.0
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dependencies = [
"pandas >= 2.0.0",
"psutil >= 5.7.0",
"scipy >= 1.10.0",
"tqdm >= 4.32.0",
"tqdm >= 4.66.3",
"woodwork >= 0.28.0",
]

Expand All @@ -55,7 +55,7 @@ test = [
"composeml >= 0.8.0",
"graphviz >= 0.8.4",
"moto[all] >= 5.0.0",
"pip >= 21.3.1",
"pip >= 23.3.0",
"pyarrow >= 14.0.1",
"pympler >= 0.8",
"pytest >= 7.1.2",
Expand Down
Loading