summaryrefslogtreecommitdiffstats
path: root/meta-python
diff options
context:
space:
mode:
authorTom Geelen <t.f.g.geelen@gmail.com>2025-06-21 16:17:15 +0200
committerKhem Raj <raj.khem@gmail.com>2025-06-25 06:44:54 -0700
commitaf2e6a25cf3cda8ebb0a6be9a1dff84bd07b53d8 (patch)
tree2669711d9f7ea4656895df3942f54bf6882bc3ab /meta-python
parent0ddc9724ec374b4cff4df5b2cb19a7dbc58b7174 (diff)
downloadmeta-openembedded-af2e6a25cf3cda8ebb0a6be9a1dff84bd07b53d8.tar.gz
python3-propcache: 0.3.1 -> 0.3.2
Drop patch which allows Cython 3.1.x as source now supports it. Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
-rw-r--r--meta-python/recipes-devtools/python/python3-propcache/0001-Fix-build-with-cython-3.1.x.patch34
-rw-r--r--meta-python/recipes-devtools/python/python3-propcache_0.3.2.bb (renamed from meta-python/recipes-devtools/python/python3-propcache_0.3.1.bb)3
2 files changed, 1 insertions, 36 deletions
diff --git a/meta-python/recipes-devtools/python/python3-propcache/0001-Fix-build-with-cython-3.1.x.patch b/meta-python/recipes-devtools/python/python3-propcache/0001-Fix-build-with-cython-3.1.x.patch
deleted file mode 100644
index 3b86b23c00..0000000000
--- a/meta-python/recipes-devtools/python/python3-propcache/0001-Fix-build-with-cython-3.1.x.patch
+++ /dev/null
@@ -1,34 +0,0 @@
1From 8d44d867f7cd86da4edf328e06b13778577ea4b7 Mon Sep 17 00:00:00 2001
2From: WXbet <57314510+WXbet@users.noreply.github.com>
3Date: Thu, 15 May 2025 21:54:48 +0200
4Subject: [PATCH] Fix build with cython 3.1.x
5
6closes #113
7
8Upstream-Status: Submitted [https://github.com/aio-libs/propcache/pull/114]
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10---
11 packaging/pep517_backend/_backend.py | 2 +-
12 requirements/cython.txt | 2 +-
13 2 files changed, 2 insertions(+), 2 deletions(-)
14
15diff --git a/packaging/pep517_backend/_backend.py b/packaging/pep517_backend/_backend.py
16index 7588db3..f75b83a 100644
17--- a/packaging/pep517_backend/_backend.py
18+++ b/packaging/pep517_backend/_backend.py
19@@ -379,7 +379,7 @@ def get_requires_for_build_wheel(
20 elif sysconfig.get_config_var('Py_GIL_DISABLED'):
21 c_ext_build_deps = ['Cython ~= 3.1.0a1']
22 else:
23- c_ext_build_deps = ['Cython ~= 3.0.12']
24+ c_ext_build_deps = ['Cython ~= 3.1']
25
26 return _setuptools_get_requires_for_build_wheel(
27 config_settings=config_settings,
28diff --git a/requirements/cython.txt b/requirements/cython.txt
29index 69a1d6f..5b356ed 100644
30--- a/requirements/cython.txt
31+++ b/requirements/cython.txt
32@@ -1 +1 @@
33-cython==3.0.12
34+cython~=3.1
diff --git a/meta-python/recipes-devtools/python/python3-propcache_0.3.1.bb b/meta-python/recipes-devtools/python/python3-propcache_0.3.2.bb
index afa6822563..e78d7b3428 100644
--- a/meta-python/recipes-devtools/python/python3-propcache_0.3.1.bb
+++ b/meta-python/recipes-devtools/python/python3-propcache_0.3.2.bb
@@ -3,8 +3,7 @@ HOMEPAGE = "https://github.com/aio-libs/propcache"
3LICENSE = "Apache-2.0" 3LICENSE = "Apache-2.0"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" 4LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
5 5
6SRC_URI += "file://0001-Fix-build-with-cython-3.1.x.patch" 6SRC_URI[sha256sum] = "20d7d62e4e7ef05f221e0db2856b979540686342e7dd9973b815599c7057e168"
7SRC_URI[sha256sum] = "40d980c33765359098837527e18eddefc9a24cea5b45e078a7f3bb5b032c6ecf"
8 7
9inherit pypi python_setuptools_build_meta ptest-python-pytest cython 8inherit pypi python_setuptools_build_meta ptest-python-pytest cython
10 9