From 1f9cd537fde6d7af7d64ed6766033e26aa58a13a Mon Sep 17 00:00:00 2001 From: Nate Parsons Date: Tue, 13 Feb 2024 12:28:59 -0600 Subject: [PATCH 1/4] update to fix min dependency checker action --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 045187c6b1..250cd647b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,7 +56,7 @@ test = [ "graphviz >= 0.8.4", "moto[all] >= 5.0.0", "pip >= 21.3.1", - "pyarrow >= 3.0.0,<13.0.0", + "pyarrow >= 3.0.0, <13.0.0", "pympler >= 0.8", "pytest >= 7.1.2", "pytest-cov >= 3.0.0", From 5408d71816c683abb67cfeb66ae1cb67d1466925 Mon Sep 17 00:00:00 2001 From: Nate Parsons Date: Tue, 13 Feb 2024 12:35:26 -0600 Subject: [PATCH 2/4] update pyproject.toml --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 250cd647b0..609a060d6d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -73,9 +73,9 @@ dask = [ spark = [ "woodwork[spark] >= 0.23.0, <0.28.0", "pyspark >= 3.2.2", - "numpy < 1.24.0", - "pandas < 2.0.0", - "pyarrow < 13.0.0", + "numpy >= 1.21.0, < 1.24.0", + "pandas >= 1.5.0, < 2.0.0", + "pyarrow >= 3.0.0, < 13.0.0", ] updater = [ "alteryx-open-src-update-checker >= 2.1.0" From 8749edc5082eec5af28e97b58d5548510de74db5 Mon Sep 17 00:00:00 2001 From: Nate Parsons Date: Tue, 13 Feb 2024 12:37:40 -0600 Subject: [PATCH 3/4] 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 f1cf6afe37..843edf0271 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -17,6 +17,7 @@ Future Release * Update ``release.yaml`` to use trusted publisher for PyPI releases (:pr:`2646`, :pr:`2653`, :pr:`2654`) * Update dependency checkers and tests to include Dask (:pr:`2658`) * Fix the tests that run with Woodwork main so they can be triggered (:pr:`2657`) + * Fix minimum dependency checker action (:pr:`2664`) Thanks to the following people for contributing to this release: From 44ad1cd0fca54135a19eedf1072624785c16e7b8 Mon Sep 17 00:00:00 2001 From: Nate Parsons Date: Tue, 13 Feb 2024 13:23:40 -0600 Subject: [PATCH 4/4] bump urllib min --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 609a060d6d..5470f5774f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -62,7 +62,7 @@ test = [ "pytest-cov >= 3.0.0", "pytest-xdist >= 2.5.0", "smart-open >= 5.0.0", - "urllib3 >= 1.26.5", + "urllib3 >= 1.26.18", "pytest-timeout >= 2.1.0" ] dask = [