From 6aa7a6ca36a9435e30c6a90a38cd1577ccf4ae81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Robert?= Date: Thu, 25 Jul 2024 16:13:36 +0200 Subject: [PATCH] DEP: exclude numpy 2.0.1 on macOS arm64 --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index f136d7b0f95..0a7c07c8a1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,6 +49,8 @@ dependencies = [ "matplotlib>=3.5", "more-itertools>=8.4", "numpy>=1.19.3, <3", # keep minimal requirement in sync with NPY_TARGET_VERSION + # https://github.com/numpy/numpy/issues/27037 + "numpy!=2.0.1 ; platform_machine=='arm64' and platform_system=='Darwin'", "packaging>=20.9", "pillow>=8.0.0", "tomli-w>=0.4.0",