From c1c8f97f53a95f64008263f59988154ae97cb885 Mon Sep 17 00:00:00 2001 From: Tom Russell Date: Wed, 26 Jun 2024 17:17:50 +0100 Subject: [PATCH] Move numpy version constraint to main dependency list --- pyproject.toml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0c7631a..0c33cdc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,6 +25,7 @@ requires-python = ">=3.8" dependencies = [ "geopandas", "matplotlib", + "numpy<2.0.0", "openpyxl", "pandera", "pyarrow", @@ -36,15 +37,7 @@ dependencies = [ ] [project.optional-dependencies] -dev = [ - "affine", - "black", - "hilbertcurve", - "nbstripout", - "numpy<2.0.0", - "pytest-cov", - "pytest", -] +dev = ["affine", "black", "hilbertcurve", "nbstripout", "pytest-cov", "pytest"] docs = ["sphinx", "nbsphinx", "sphinx_gallery", "numpydoc"] tutorials = [ "contextily",