From 47fa8352930b3ec35a8cbb6b4eb42bbf8a18aa5a Mon Sep 17 00:00:00 2001 From: Irfan Alibay Date: Sun, 24 Dec 2023 12:39:09 +0000 Subject: [PATCH] Fix upper python+numpy pin for build system Should be 3.13 not 3.12 --- package/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/pyproject.toml b/package/pyproject.toml index 34d00fa43d5..4b1ed86317c 100644 --- a/package/pyproject.toml +++ b/package/pyproject.toml @@ -17,7 +17,7 @@ requires = [ "numpy==1.26.0; python_version=='3.12' and platform_python_implementation != 'PyPy'", # For unreleased versions of Python there is currently no known supported # NumPy version. In that case we just let it be a bare NumPy install - "numpy<2.0; python_version>='3.12'", + "numpy<2.0; python_version>='3.13'", "setuptools", "wheel", ]