diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 844c74b17..dc37b18cc 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -8,7 +8,8 @@ Future Release * Enhancements * Fixes * Changes - * Remove numpy upper bound restriction in ``pyproject.toml`` :pr:`1819` + * Remove numpy upper bound restriction in ``pyproject.toml`` :pr:`1819` + * Bump min version of python-dateutil for pandas 2.0 compatibility :pr:`1825` * Documentation Changes * Testing Changes * Update ``release.yaml`` to use trusted publisher for PyPI releases :pr:`1819` diff --git a/pyproject.toml b/pyproject.toml index 19346af27..22aeafb1f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ requires-python = ">=3.9,<4" dependencies = [ "pandas >= 1.4.3", "scikit-learn >= 1.1.0", - "python-dateutil >= 2.8.1", + "python-dateutil >= 2.8.2", "scipy >= 1.10.0", "importlib-resources >= 5.10.0", "numpy >= 1.25.0",