diff --git a/.github/meta.yaml b/.github/meta.yaml index d6be070495..2d755fa3bb 100644 --- a/.github/meta.yaml +++ b/.github/meta.yaml @@ -24,7 +24,7 @@ outputs: - pip - setuptools ==58.0.4 run: - - numpy >=1.21.0 + - numpy >=1.22.0 - pandas >=1.5.0, <2.1.0 - dask >=2022.2.0, !=2022.10.1 - scipy >=1.5.0 diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 2a6e75f671..f215383423 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -12,6 +12,7 @@ Release Notes * Changes * Updated ``split_data`` to call ``split_multiseries_data`` when passed stacked multiseries data :pr:`4312` * Pinned pandas version under 2.1.0 :pr:`4315` + * Increased minimum numpy version :pr:`4321` * Documentation Changes * Removed LightGBM's excessive amount of warnings :pr:`4308` * Testing Changes diff --git a/evalml/tests/dependency_update_check/minimum_requirements.txt b/evalml/tests/dependency_update_check/minimum_requirements.txt index 44a8edaadb..e42e96cd97 100644 --- a/evalml/tests/dependency_update_check/minimum_requirements.txt +++ b/evalml/tests/dependency_update_check/minimum_requirements.txt @@ -17,7 +17,7 @@ lime==0.2.0.1 matplotlib==3.3.3 networkx==2.6 nlp-primitives==2.9.0 -numpy==1.21.0 +numpy==1.22.0 packaging==23.0 pandas==1.5.0 plotly==5.0.0 diff --git a/evalml/tests/dependency_update_check/minimum_test_requirements.txt b/evalml/tests/dependency_update_check/minimum_test_requirements.txt index 0251646993..7e9b386571 100644 --- a/evalml/tests/dependency_update_check/minimum_test_requirements.txt +++ b/evalml/tests/dependency_update_check/minimum_test_requirements.txt @@ -21,7 +21,7 @@ matplotlib==3.3.3 nbval==0.9.3 networkx==2.6 nlp-primitives==2.9.0 -numpy==1.21.0 +numpy==1.22.0 packaging==23.0 pandas==1.5.0 plotly==5.0.0 diff --git a/pyproject.toml b/pyproject.toml index 93c84548fa..98ff7dce1d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ keywords = ["data science", "machine learning", "optimization", "automl"] license = {file = "LICENSE"} requires-python = ">=3.8,<4" dependencies = [ - "numpy >= 1.21.0", + "numpy >= 1.22.0", "pandas >= 1.5.0, < 2.1.0", "scipy >= 1.5.0", "scikit-learn >= 1.3.0",