From 6fa22f436b5a275fc066330c2893cfb7823747ff Mon Sep 17 00:00:00 2001 From: Andrej Prsa Date: Wed, 30 Oct 2024 11:13:28 -0400 Subject: [PATCH] Removes the numpy<2.0 version pin. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 80a7d2fae..1f47c4c2e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -58,7 +58,7 @@ classifiers = [ "Topic :: Software Development :: User Interfaces" ] dependencies = [ - "numpy < 2.0.0", + "numpy", "scipy", "astropy", "pytest", @@ -79,7 +79,7 @@ repository = "https://github.com/phoebe-project/phoebe2" documentation = "http://phoebe-project.org/docs" [build-system] -requires = ["setuptools", "numpy < 2.0.0", "wheel"] +requires = ["setuptools", "numpy", "wheel"] build-backend = "setuptools.build_meta" [tool.setuptools]