From fcf9f039c6c6c5cc3f4bf386580ff10ffaccec0c Mon Sep 17 00:00:00 2001 From: Brent Pedersen Date: Mon, 17 Jun 2024 14:21:46 -0700 Subject: [PATCH] attempted fix for #307 from @aryarm --- pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4018caa..18bc373 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,8 @@ [build-system] requires = [ - "setuptools", - "wheel", - "cython>=0.23.3", - 'oldest-supported-numpy; os_name != "nt"', - 'numpy; os_name == "nt"' + "setuptools", + "wheel", + "cython>=0.23.3", + 'oldest-supported-numpy; os_name != "nt"' and python_version < "3.9"', + 'numpy>=2.0.0; os_name == "nt" and python_version >= "3.9"', ]