From 88dd3e50971c1a315390eb05eb8d4d69aeeb610f Mon Sep 17 00:00:00 2001 From: "Jimmy C. Kromann" Date: Mon, 1 Jul 2024 22:27:17 +0200 Subject: [PATCH] Not ready for Numpy 2.0.0 (#11) --- environment_dev.yaml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/environment_dev.yaml b/environment_dev.yaml index 4d7d959..bd3e993 100644 --- a/environment_dev.yaml +++ b/environment_dev.yaml @@ -6,7 +6,7 @@ dependencies: - python==3.12 - jupytext - monkeytype - - numpy + - numpy<2.0.0 - pandas - pip - pre-commit diff --git a/pyproject.toml b/pyproject.toml index 1911c7a..1f8f3db 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools", "numpy", "meson", "ninja"] +requires = ["setuptools", "numpy<2.0.0", "meson", "ninja"] build-backend = "setuptools.build_meta" [project] @@ -19,7 +19,7 @@ classifiers = [ "Topic :: Scientific/Engineering :: Chemistry", ] keywords = ["qml", "quantum chemistry", "machine learning"] -dependencies=["numpy", "scipy"] +dependencies=["numpy<2.0.0", "scipy"] [project.urls] Homepage = "https://qmlcode.org"