From 9568a9c86601a6a27ae7b6457d43ca7490996526 Mon Sep 17 00:00:00 2001 From: Becca McBrayer Date: Tue, 11 Apr 2023 09:52:31 -0400 Subject: [PATCH 1/3] Pin sktime to 0.17.0 only --- .github/meta.yaml | 2 +- docs/source/release_notes.rst | 1 + pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/meta.yaml b/.github/meta.yaml index 7d08b24faa..fbdf33ff3a 100644 --- a/.github/meta.yaml +++ b/.github/meta.yaml @@ -78,7 +78,7 @@ outputs: - lime >=0.2.0.1 - python >=3.8.* - imbalanced-learn >=0.9.1 - - sktime >=0.17.0 + - sktime ==0.17.0 - pmdarima >=1.8.5 - vowpalwabbit >=8.11.0 test: diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index e9da3b3080..cf288efa3d 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -11,6 +11,7 @@ Release Notes * Removed existing nullable type handling across AutoMLSearch to just use new handling :pr:`4085`, :pr:`4043` * Handled nullable type incompatibility in ``Decomposer`` :pr:`4105`, :pr:`4043` * Changed the default value for ``null_strategy`` in ``InvalidTargetDataCheck`` to ``drop`` :pr:`4131` + * Pinned sktime version to 0.17.0 for nullable types support :pr:`4136` * Documentation Changes * Testing Changes * Fixed installation of prophet for linux nightly tests :pr:`4114` diff --git a/pyproject.toml b/pyproject.toml index 956eb6dbb3..6fefd8fd0a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -58,7 +58,7 @@ dependencies = [ "category-encoders >= 2.2.2, <= 2.5.1.post0", "imbalanced-learn >= 0.9.1", "pmdarima >= 1.8.5", - "sktime >= 0.17.0", + "sktime == 0.17.0", "lime >= 0.2.0.1", "vowpalwabbit >= 8.11.0", "tomli >= 2.0.1", From a552d9f943e27e40a3645a2b0f72e9f9feef2856 Mon Sep 17 00:00:00 2001 From: Becca McBrayer Date: Tue, 11 Apr 2023 09:54:22 -0400 Subject: [PATCH 2/3] Release notes --- docs/source/release_notes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index cf288efa3d..d5b3efd8d7 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -11,7 +11,7 @@ Release Notes * Removed existing nullable type handling across AutoMLSearch to just use new handling :pr:`4085`, :pr:`4043` * Handled nullable type incompatibility in ``Decomposer`` :pr:`4105`, :pr:`4043` * Changed the default value for ``null_strategy`` in ``InvalidTargetDataCheck`` to ``drop`` :pr:`4131` - * Pinned sktime version to 0.17.0 for nullable types support :pr:`4136` + * Pinned sktime version to 0.17.0 for nullable types support :pr:`4137` * Documentation Changes * Testing Changes * Fixed installation of prophet for linux nightly tests :pr:`4114` From af6bdf1b63e6ebdd7fbf1bc3c948a59dc4420597 Mon Sep 17 00:00:00 2001 From: Becca McBrayer Date: Tue, 11 Apr 2023 10:20:54 -0400 Subject: [PATCH 3/3] Add missing release note --- 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 d5b3efd8d7..8bf46b26b1 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -10,6 +10,7 @@ Release Notes * Added calls to ``_handle_nullable_types`` in component fit, transform, and predict methods when needed :pr:`4046`, :pr:`4043` * Removed existing nullable type handling across AutoMLSearch to just use new handling :pr:`4085`, :pr:`4043` * Handled nullable type incompatibility in ``Decomposer`` :pr:`4105`, :pr:`4043` + * Removed nullable type incompatibility handling for ARIMA and ExponentialSmoothingRegressor :pr:`4129` * Changed the default value for ``null_strategy`` in ``InvalidTargetDataCheck`` to ``drop`` :pr:`4131` * Pinned sktime version to 0.17.0 for nullable types support :pr:`4137` * Documentation Changes