From e4b792bbcee9ab44f6c2944e1a4df4a81fc2515b Mon Sep 17 00:00:00 2001 From: christopherbunn Date: Mon, 12 Feb 2024 16:06:22 -0500 Subject: [PATCH 1/5] Initial commit --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 69ac6802d4..1a255dd4cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,7 @@ dependencies = [ "nlp-primitives >= 2.9.0", "networkx >= 2.6, <3.2", "plotly >= 5.0.0", - "kaleido == 0.1.0", + "kaleido >= 0.2.0", "ipywidgets >= 7.5", "xgboost >= 1.7.0.post0", "catboost >= 1.1.1", From c0e8d0de89b2b422e90f41a8c91e5468cc595ec8 Mon Sep 17 00:00:00 2001 From: christopherbunn Date: Mon, 12 Feb 2024 16:12:29 -0500 Subject: [PATCH 2/5] Updated latest and made 0.1.0 floor --- .../dependency_update_check/latest_dependency_versions.txt | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/evalml/tests/dependency_update_check/latest_dependency_versions.txt b/evalml/tests/dependency_update_check/latest_dependency_versions.txt index ce4e037ab6..23923972f3 100644 --- a/evalml/tests/dependency_update_check/latest_dependency_versions.txt +++ b/evalml/tests/dependency_update_check/latest_dependency_versions.txt @@ -11,7 +11,7 @@ graphviz==0.20.1 holidays==0.20 imbalanced-learn==0.12.0 ipywidgets==8.1.2 -kaleido==0.1.0 +kaleido==0.2.1 lightgbm==4.3.0 lime==0.2.0.1 matplotlib==3.7.4 diff --git a/pyproject.toml b/pyproject.toml index 1a255dd4cd..9643a07891 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,7 @@ dependencies = [ "nlp-primitives >= 2.9.0", "networkx >= 2.6, <3.2", "plotly >= 5.0.0", - "kaleido >= 0.2.0", + "kaleido >= 0.1.0", "ipywidgets >= 7.5", "xgboost >= 1.7.0.post0", "catboost >= 1.1.1", From 1bd2f3dc4eacdcd4e0eb94fe0840615504ba4768 Mon Sep 17 00:00:00 2001 From: christopherbunn Date: Tue, 13 Feb 2024 11:22:09 -0500 Subject: [PATCH 3/5] Push to 0.2.0 again --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9643a07891..1a255dd4cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,7 @@ dependencies = [ "nlp-primitives >= 2.9.0", "networkx >= 2.6, <3.2", "plotly >= 5.0.0", - "kaleido >= 0.1.0", + "kaleido >= 0.2.0", "ipywidgets >= 7.5", "xgboost >= 1.7.0.post0", "catboost >= 1.1.1", From 33d42a21844c84d3e90e5a541151585a51f35f57 Mon Sep 17 00:00:00 2001 From: christopherbunn Date: Tue, 13 Feb 2024 11:26:26 -0500 Subject: [PATCH 4/5] More 0.2.0 replacement --- evalml/tests/dependency_update_check/minimum_requirements.txt | 2 +- .../tests/dependency_update_check/minimum_test_requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/evalml/tests/dependency_update_check/minimum_requirements.txt b/evalml/tests/dependency_update_check/minimum_requirements.txt index 6e4436381c..0153f499fe 100644 --- a/evalml/tests/dependency_update_check/minimum_requirements.txt +++ b/evalml/tests/dependency_update_check/minimum_requirements.txt @@ -11,7 +11,7 @@ graphviz==0.13 holidays==0.13 imbalanced-learn==0.11.0 ipywidgets==7.5 -kaleido==0.1.0 +kaleido>=0.2.0 lightgbm==4.0.0 lime==0.2.0.1 matplotlib==3.3.3 diff --git a/evalml/tests/dependency_update_check/minimum_test_requirements.txt b/evalml/tests/dependency_update_check/minimum_test_requirements.txt index f0d6252a49..551d089c4d 100644 --- a/evalml/tests/dependency_update_check/minimum_test_requirements.txt +++ b/evalml/tests/dependency_update_check/minimum_test_requirements.txt @@ -14,7 +14,7 @@ graphviz==0.13 holidays==0.13 imbalanced-learn==0.11.0 ipywidgets==7.5 -kaleido==0.1.0 +kaleido>=0.2.0 lightgbm==4.0.0 lime==0.2.0.1 matplotlib==3.3.3 From ba092c9a754553c7f64d859ddc273c9d1f7ba1ee Mon Sep 17 00:00:00 2001 From: christopherbunn Date: Tue, 13 Feb 2024 11:56:30 -0500 Subject: [PATCH 5/5] Try uncapping it again --- .github/meta.yaml | 2 +- evalml/tests/dependency_update_check/minimum_requirements.txt | 2 +- .../tests/dependency_update_check/minimum_test_requirements.txt | 2 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/meta.yaml b/.github/meta.yaml index f9240763b6..c92ab44fbf 100644 --- a/.github/meta.yaml +++ b/.github/meta.yaml @@ -69,7 +69,7 @@ outputs: run: - '{{ pin_subpackage("evalml-core", max_pin="x.x.x.x") }}' - plotly >=5.0.0 - - python-kaleido ==0.1.0 + - python-kaleido >=0.1.0 - matplotlib-base >=3.3.3 - seaborn >=0.11.1 - ipywidgets >=7.5 diff --git a/evalml/tests/dependency_update_check/minimum_requirements.txt b/evalml/tests/dependency_update_check/minimum_requirements.txt index 0153f499fe..6e4436381c 100644 --- a/evalml/tests/dependency_update_check/minimum_requirements.txt +++ b/evalml/tests/dependency_update_check/minimum_requirements.txt @@ -11,7 +11,7 @@ graphviz==0.13 holidays==0.13 imbalanced-learn==0.11.0 ipywidgets==7.5 -kaleido>=0.2.0 +kaleido==0.1.0 lightgbm==4.0.0 lime==0.2.0.1 matplotlib==3.3.3 diff --git a/evalml/tests/dependency_update_check/minimum_test_requirements.txt b/evalml/tests/dependency_update_check/minimum_test_requirements.txt index 551d089c4d..f0d6252a49 100644 --- a/evalml/tests/dependency_update_check/minimum_test_requirements.txt +++ b/evalml/tests/dependency_update_check/minimum_test_requirements.txt @@ -14,7 +14,7 @@ graphviz==0.13 holidays==0.13 imbalanced-learn==0.11.0 ipywidgets==7.5 -kaleido>=0.2.0 +kaleido==0.1.0 lightgbm==4.0.0 lime==0.2.0.1 matplotlib==3.3.3 diff --git a/pyproject.toml b/pyproject.toml index 1a255dd4cd..9643a07891 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,7 @@ dependencies = [ "nlp-primitives >= 2.9.0", "networkx >= 2.6, <3.2", "plotly >= 5.0.0", - "kaleido >= 0.2.0", + "kaleido >= 0.1.0", "ipywidgets >= 7.5", "xgboost >= 1.7.0.post0", "catboost >= 1.1.1",