From 746bfa18137229e6d0aaa8f08f7293d6717f66d6 Mon Sep 17 00:00:00 2001 From: Nate Parsons Date: Tue, 7 May 2024 13:06:22 -0500 Subject: [PATCH 1/2] bump pip and tqdm versions --- .../tests/requirement_files/minimum_core_requirements.txt | 2 +- .../tests/requirement_files/minimum_dask_requirements.txt | 2 +- .../tests/requirement_files/minimum_test_requirements.txt | 4 ++-- pyproject.toml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/featuretools/tests/requirement_files/minimum_core_requirements.txt b/featuretools/tests/requirement_files/minimum_core_requirements.txt index 10000cf720..7a3ff17bc3 100644 --- a/featuretools/tests/requirement_files/minimum_core_requirements.txt +++ b/featuretools/tests/requirement_files/minimum_core_requirements.txt @@ -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 diff --git a/featuretools/tests/requirement_files/minimum_dask_requirements.txt b/featuretools/tests/requirement_files/minimum_dask_requirements.txt index 5041c3a7b3..20dcf561b0 100644 --- a/featuretools/tests/requirement_files/minimum_dask_requirements.txt +++ b/featuretools/tests/requirement_files/minimum_dask_requirements.txt @@ -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 diff --git a/featuretools/tests/requirement_files/minimum_test_requirements.txt b/featuretools/tests/requirement_files/minimum_test_requirements.txt index ce6df23b50..1033593994 100644 --- a/featuretools/tests/requirement_files/minimum_test_requirements.txt +++ b/featuretools/tests/requirement_files/minimum_test_requirements.txt @@ -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 @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 3af882e610..87996b3526 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", ] @@ -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", From 320ca45fc99f16dab081044ec94aff23786ca869 Mon Sep 17 00:00:00 2001 From: Nate Parsons Date: Tue, 7 May 2024 13:10:01 -0500 Subject: [PATCH 2/2] update release notes --- docs/source/release_notes.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 7df1fed779..032b85b1c6 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -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`)