summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-pyzstd/0001-Bump-setuptools-dependency-from-74-to-79.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2025-04-09 14:51:18 -0700
committerKhem Raj <raj.khem@gmail.com>2025-04-10 18:39:31 -0700
commitcbe22302dfbe0659c59db9abddf3d7a3264c66c4 (patch)
tree614cc176a03e51804f944e867dc630b9334480f5 /meta-python/recipes-devtools/python/python3-pyzstd/0001-Bump-setuptools-dependency-from-74-to-79.patch
parent786fa08fceaa8fecdad8234fcb22c7aaeb4af8a2 (diff)
downloadmeta-openembedded-cbe22302dfbe0659c59db9abddf3d7a3264c66c4.tar.gz
python3-pyzstd: Switch to PEP-517 build backend
Add ptest support while here Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pyzstd/0001-Bump-setuptools-dependency-from-74-to-79.patch')
-rw-r--r--meta-python/recipes-devtools/python/python3-pyzstd/0001-Bump-setuptools-dependency-from-74-to-79.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pyzstd/0001-Bump-setuptools-dependency-from-74-to-79.patch b/meta-python/recipes-devtools/python/python3-pyzstd/0001-Bump-setuptools-dependency-from-74-to-79.patch
new file mode 100644
index 0000000000..8fc26bd90b
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pyzstd/0001-Bump-setuptools-dependency-from-74-to-79.patch
@@ -0,0 +1,27 @@
1From e648bb2439cad0d2ce47875edc7944d0b446fdb4 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 9 Apr 2025 14:38:31 -0700
4Subject: [PATCH] Bump setuptools dependency from 74 to 79
5
6Upstream sticks to 0.74 since setuptools have dropped msvc9compiler
7support beyond that which is needed for python 3.9 on windows. We
8do not have this problem on Linux
9
10Upstream-Status: Inappropriate [OE-specific]
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12---
13 pyproject.toml | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/pyproject.toml b/pyproject.toml
17index dd885e4..9f273b3 100644
18--- a/pyproject.toml
19+++ b/pyproject.toml
20@@ -1,6 +1,6 @@
21 [build-system]
22 # setuptools 64+ support --build-option
23 # setuptools 74+ drops distutils.msvc9compiler required for Python 3.9 under Windows
24-requires = ["setuptools>=64,<74"]
25+requires = ["setuptools>=64,<79"]
26 backend-path = ["build_script"]
27 build-backend = "pyzstd_pep517"