summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-zopeinterface/0001-Allow-using-setuptools-74.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-zopeinterface/0001-Allow-using-setuptools-74.patch')
-rw-r--r--meta-python/recipes-devtools/python/python3-zopeinterface/0001-Allow-using-setuptools-74.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-zopeinterface/0001-Allow-using-setuptools-74.patch b/meta-python/recipes-devtools/python/python3-zopeinterface/0001-Allow-using-setuptools-74.patch
new file mode 100644
index 0000000000..a01247fe5a
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-zopeinterface/0001-Allow-using-setuptools-74.patch
@@ -0,0 +1,24 @@
1From 5060ecfe6cff5110cbfbc781fc7342ad08fc6f90 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 23 Nov 2024 18:30:40 -0800
4Subject: [PATCH] Allow using setuptools > 74
5
6Upstream-Status: Pending
7Signed-off-by: Khem Raj <raj.khem@gmail.com>
8---
9 pyproject.toml | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12diff --git a/pyproject.toml b/pyproject.toml
13index 17da486..7906a37 100644
14--- a/pyproject.toml
15+++ b/pyproject.toml
16@@ -3,7 +3,7 @@
17 # https://github.com/zopefoundation/meta/tree/master/config/c-code
18
19 [build-system]
20-requires = ["setuptools<74"]
21+requires = ["setuptools"]
22 build-backend = "setuptools.build_meta"
23
24 [tool.coverage.run]