From d35134df98d3794cf22b4352f82153613b16dab3 Mon Sep 17 00:00:00 2001 From: eccabay Date: Mon, 23 Oct 2023 11:03:38 -0400 Subject: [PATCH] Pin networkx below v3.2 --- .github/meta.yaml | 2 +- core-requirements.txt | 2 +- .../dependency_update_check/latest_dependency_versions.txt | 4 ++-- pyproject.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/meta.yaml b/.github/meta.yaml index 2d755fa3bb..8e9b616a1b 100644 --- a/.github/meta.yaml +++ b/.github/meta.yaml @@ -40,7 +40,7 @@ outputs: - featuretools>=1.16.0 - nlp-primitives>=2.9.0 - python >=3.8.* - - networkx >=2.6 + - networkx >=2.6, <3.2 - category_encoders >=2.2.2, <=2.5.1.post0 - python-graphviz >=0.13 - tomli >=2.0.1 diff --git a/core-requirements.txt b/core-requirements.txt index 15b9a4d9fe..c71f1ebef3 100644 --- a/core-requirements.txt +++ b/core-requirements.txt @@ -14,4 +14,4 @@ woodwork>= 0.21.1 dask>=2022.2.0, !=2022.10.1 nlp-primitives>=2.9.0 featuretools>=1.16.0 -networkx>=2.6 +networkx>=2.6, <3.2 diff --git a/evalml/tests/dependency_update_check/latest_dependency_versions.txt b/evalml/tests/dependency_update_check/latest_dependency_versions.txt index cf01b51eca..ecc2c3df56 100644 --- a/evalml/tests/dependency_update_check/latest_dependency_versions.txt +++ b/evalml/tests/dependency_update_check/latest_dependency_versions.txt @@ -22,9 +22,9 @@ numpy==1.24.4 packaging==23.2 pandas==2.0.3 plotly==5.17.0 -pmdarima==2.0.3 +pmdarima==2.0.4 pyzmq==25.1.1 -scikit-learn==1.3.1 +scikit-learn==1.3.2 scikit-optimize==0.9.0 scipy==1.10.1 seaborn==0.13.0 diff --git a/pyproject.toml b/pyproject.toml index 98ff7dce1d..556d977d54 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,7 @@ dependencies = [ "distributed >= 2022.2.0, != 2022.10.1", "featuretools[dask] >= 1.16.0", "nlp-primitives >= 2.9.0", - "networkx >= 2.6", + "networkx >= 2.6, <3.2", "plotly >= 5.0.0", "kaleido >= 0.1.0", "ipywidgets >= 7.5",