You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
From b671c4141dc9692ce8745a4ddb9f6b0b14e5e70f Mon Sep 17 00:00:00 2001
|
|
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
|
Date: Fri, 13 Dec 2024 02:03:33 -0500
|
|
Subject: [PATCH 4/5] Unpin meson-python build requirement
|
|
|
|
This is pinned to fix sdists, but we already have one and are building a
|
|
wheel, which should be fine.
|
|
|
|
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
|
---
|
|
pyproject.toml | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/pyproject.toml b/pyproject.toml
|
|
index 1894bbf3cd..bdf2119f1b 100644
|
|
--- a/pyproject.toml
|
|
+++ b/pyproject.toml
|
|
@@ -48,7 +48,7 @@ requires-python = ">=3.9"
|
|
[project.optional-dependencies]
|
|
# Should be a copy of the build dependencies below.
|
|
dev = [
|
|
- "meson-python>=0.13.1,<0.17.0",
|
|
+ "meson-python>=0.13.1",
|
|
"numpy>=1.25",
|
|
"pybind11>=2.6,!=2.13.3",
|
|
"setuptools_scm>=7",
|
|
@@ -73,7 +73,7 @@ dev = [
|
|
build-backend = "mesonpy"
|
|
# Also keep in sync with optional dependencies above.
|
|
requires = [
|
|
- "meson-python>=0.13.1,<0.17.0",
|
|
+ "meson-python>=0.13.1",
|
|
"pybind11>=2.6,!=2.13.3",
|
|
"setuptools_scm>=7",
|
|
"numpy",
|
|
--
|
|
2.47.0
|
|
|