diff --git a/.github/meta.yaml b/.github/meta.yaml index 1f583009e2..c6bcb7b872 100644 --- a/.github/meta.yaml +++ b/.github/meta.yaml @@ -25,7 +25,7 @@ outputs: - setuptools ==58.0.4 run: - numpy >=1.21.0 - - pandas >=1.5.0 + - pandas >=1.5.0, <2.0.0 - dask >=2022.2.0, !=2022.10.1 - scipy >=1.5.0 - scikit-learn >=1.2.2 @@ -79,7 +79,7 @@ outputs: - lime >=0.2.0.1 - python >=3.8.* - imbalanced-learn >=0.9.1, <0.11.0 - - sktime ==0.17.0 + - sktime >=0.17.0 - pmdarima >=1.8.5 - vowpalwabbit >=8.11.0 test: diff --git a/core-requirements.txt b/core-requirements.txt index 09beb0d636..a719ddb846 100644 --- a/core-requirements.txt +++ b/core-requirements.txt @@ -1,5 +1,5 @@ numpy>=1.21.0 -pandas>=1.5.0 +pandas>=1.5.0, <2.0.0 scipy>=1.5.0 scikit-learn>=1.2.1 scikit-optimize>=0.9.0 diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 8faf1117e9..6797375a8c 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -4,6 +4,7 @@ Release Notes * Enhancements * Fixes * Changes + * Unpinned sktime version :pr:`4214` * Documentation Changes * Testing Changes diff --git a/evalml/tests/component_tests/test_arima_regressor.py b/evalml/tests/component_tests/test_arima_regressor.py index 6cf71b3d77..3aaf41fd83 100644 --- a/evalml/tests/component_tests/test_arima_regressor.py +++ b/evalml/tests/component_tests/test_arima_regressor.py @@ -203,7 +203,6 @@ def test_feature_importance(ts_data): [ (True, False, False, False, False, False), (False, True, True, False, False, True), - (False, True, True, False, False, False), ], ) def test_fit_predict( diff --git a/evalml/tests/dependency_update_check/latest_dependency_versions.txt b/evalml/tests/dependency_update_check/latest_dependency_versions.txt index 3c65e6298e..571caab786 100644 --- a/evalml/tests/dependency_update_check/latest_dependency_versions.txt +++ b/evalml/tests/dependency_update_check/latest_dependency_versions.txt @@ -29,7 +29,7 @@ scikit-optimize==0.9.0 scipy==1.10.1 seaborn==0.12.2 shap==0.42.0 -sktime==0.17.0 +sktime==0.20.0 statsmodels==0.14.0 texttable==1.6.7 tomli==2.0.1 diff --git a/pyproject.toml b/pyproject.toml index ccc4944e9d..6bacebe21a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ license = {file = "LICENSE"} requires-python = ">=3.8,<4" dependencies = [ "numpy >= 1.21.0", - "pandas >= 1.5.0", + "pandas >= 1.5.0, <2.0.0", "scipy >= 1.5.0", "scikit-learn >= 1.2.2", "scikit-optimize >= 0.9.0", @@ -59,7 +59,7 @@ dependencies = [ "category-encoders >= 2.2.2, <= 2.5.1.post0", "imbalanced-learn >= 0.9.1, <0.11.0", "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",