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: diff --git a/pyproject.toml b/pyproject.toml index 045187c6b1..5470f5774f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,13 +56,13 @@ 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", "pytest-xdist >= 2.5.0", "smart-open >= 5.0.0", - "urllib3 >= 1.26.5", + "urllib3 >= 1.26.18", "pytest-timeout >= 2.1.0" ] dask = [ @@ -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"