From dc3f2835f13ad59a48a20d41d075eaf0a0bddb39 Mon Sep 17 00:00:00 2001 From: Michael Fu Date: Mon, 20 May 2024 12:13:31 -0700 Subject: [PATCH] Unpin holidays to upgrade prophet (#4428) * unpin holidays * release notes --- .github/meta.yaml | 2 +- docs/source/release_notes.rst | 1 + .../dependency_update_check/latest_dependency_versions.txt | 2 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/meta.yaml b/.github/meta.yaml index 909acb4c24..6ded864291 100644 --- a/.github/meta.yaml +++ b/.github/meta.yaml @@ -46,7 +46,7 @@ outputs: - tomli >=2.0.1 - packaging >=23.0 - black[jupyter] >=22.3.0 - - holidays <0.21, >=0.13 + - holidays >=0.13 - distributed >=2022.2.0, !=2022.10.1 test: imports: diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 69dcc41a21..4970bf204b 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -6,6 +6,7 @@ Release Notes * Fixes * Changes * Dropped support for Python 3.8 :pr:`4414` + * Uncapped holidays :pr:`4428` * Documentation Changes * Testing Changes * Run airflow tests in Python 3.9 :pr:`4391` diff --git a/evalml/tests/dependency_update_check/latest_dependency_versions.txt b/evalml/tests/dependency_update_check/latest_dependency_versions.txt index a2319d19b0..b5402f4610 100644 --- a/evalml/tests/dependency_update_check/latest_dependency_versions.txt +++ b/evalml/tests/dependency_update_check/latest_dependency_versions.txt @@ -9,7 +9,7 @@ dask-expr==1.1.1 distributed==2024.5.1 featuretools==1.31.0 graphviz==0.20.3 -holidays==0.20 +holidays==0.48 imbalanced-learn==0.12.2 ipywidgets==8.1.2 kaleido==0.1.0 diff --git a/pyproject.toml b/pyproject.toml index 98d7e23c66..2633a5507f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,7 +65,7 @@ dependencies = [ "tomli >= 2.0.1", "packaging >= 23.0", "black[jupyter] >= 22.3.0", - "holidays >= 0.13, < 0.21" + "holidays >= 0.13" ] [project.urls]