From a59e90e16b407fcd484904c6a30e7d30aa540dc0 Mon Sep 17 00:00:00 2001 From: Nate Parsons <4307001+thehomebrewnerd@users.noreply.github.com> Date: Fri, 23 Feb 2024 11:36:49 -0600 Subject: [PATCH] Bump min version of python-dateutil for pandas 2.0 compatibility (#1825) * bump min version of python-dateutil * update release notes --- docs/source/release_notes.rst | 3 ++- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) 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",