From c138f88db08925270391342056385adaf12403eb Mon Sep 17 00:00:00 2001 From: Fabian Hofmann Date: Thu, 14 Nov 2024 14:36:07 +0100 Subject: [PATCH] only enable numpy>=2 for non-windows machines --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7f4767de..4c845029 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,8 @@ classifiers = [ requires-python = ">=3.9" dependencies = [ - "numpy", + "numpy"; sys_platform != 'win32' + "numpy"<2; sys_platform == 'win32' "scipy", "bottleneck", "toolz",