From 2071a07dce143325e06ee598438f800368ef986d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Wed, 17 Apr 2024 13:53:42 -0400 Subject: [PATCH] python3-numpy: relax version requirement on python3-meson-python --- .../python3-numpy/patches/version-relaxation.patch | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 srcpkgs/python3-numpy/patches/version-relaxation.patch diff --git a/srcpkgs/python3-numpy/patches/version-relaxation.patch b/srcpkgs/python3-numpy/patches/version-relaxation.patch new file mode 100644 index 00000000000..f36972e5cc9 --- /dev/null +++ b/srcpkgs/python3-numpy/patches/version-relaxation.patch @@ -0,0 +1,14 @@ +As with SciPy, NumPy abuses specifications of *build requirements* as a means +to control the environment under which wheels are built for distribution. + +--- a/pyproject.toml ++++ b/pyproject.toml +@@ -2,7 +2,7 @@ + build-backend = "mesonpy" + requires = [ + "Cython>=0.29.34,<3.1", +- "meson-python>=0.15.0,<0.16.0", ++ "meson-python>=0.15.0", + ] + + [project]