Blob Blame History Raw
From 6fbdf145c4b08134e6ae118e10f5f0243bca941c Mon Sep 17 00:00:00 2001
From: "Benjamin A. Beasley" <code@musicinmybrain.net>
Date: Thu, 21 Sep 2023 13:53:48 -0400
Subject: [PATCH] Downstream-only: allow numpy 1.24
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Upstream’s version bound is chosen for binary compatibility, which is
much more tightly controlled in a distribution package
---
 pyproject.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pyproject.toml b/pyproject.toml
index 3d818f76..ef93c8a0 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -3,7 +3,7 @@ requires = [
   "setuptools",
   "cython<3",
   # Newer than NEP29-minimum: compile against oldest numpy available
-  "numpy>=1.25; python_version > '3.8'",
+  "numpy>=1.24; python_version > '3.8'",
   # NEP29-minimum as of Sep 21, 2023
   "numpy==1.22; python_version >= '3.7' and python_version < '3.9'",
 ]
-- 
2.41.0