From 83a74d77c9d8a37b89bc3c24056cf8ad700f92ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Robert?= Date: Mon, 10 Jul 2023 15:12:09 +0200 Subject: [PATCH] DEP: set upper limit to runtime numpy --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 944e01e8abc..d3a8ec6119f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,8 @@ dependencies = [ "ipywidgets>=8.0.0", "matplotlib>=3.5", # keep in sync with tests/windows_conda_requirements.txt "more-itertools>=8.4", - "numpy>=1.17.5", + # https://github.com/scipy/oldest-supported-numpy/issues/76#issuecomment-1628865694 + "numpy>=1.17.5,<2.0", "packaging>=20.9", "pillow>=6.2.1", # transitive dependency via MPL (>=3.3) "tomli-w>=0.4.0",