diff options
author | Tom Geelen <t.f.g.geelen@gmail.com> | 2025-06-21 16:17:15 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-06-25 06:44:54 -0700 |
commit | af2e6a25cf3cda8ebb0a6be9a1dff84bd07b53d8 (patch) | |
tree | 2669711d9f7ea4656895df3942f54bf6882bc3ab /meta-python | |
parent | 0ddc9724ec374b4cff4df5b2cb19a7dbc58b7174 (diff) | |
download | meta-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.patch | 34 | ||||
-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 @@ | |||
1 | From 8d44d867f7cd86da4edf328e06b13778577ea4b7 Mon Sep 17 00:00:00 2001 | ||
2 | From: WXbet <57314510+WXbet@users.noreply.github.com> | ||
3 | Date: Thu, 15 May 2025 21:54:48 +0200 | ||
4 | Subject: [PATCH] Fix build with cython 3.1.x | ||
5 | |||
6 | closes #113 | ||
7 | |||
8 | Upstream-Status: Submitted [https://github.com/aio-libs/propcache/pull/114] | ||
9 | Signed-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 | |||
15 | diff --git a/packaging/pep517_backend/_backend.py b/packaging/pep517_backend/_backend.py | ||
16 | index 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, | ||
28 | diff --git a/requirements/cython.txt b/requirements/cython.txt | ||
29 | index 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" | |||
3 | LICENSE = "Apache-2.0" | 3 | LICENSE = "Apache-2.0" |
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" | 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" |
5 | 5 | ||
6 | SRC_URI += "file://0001-Fix-build-with-cython-3.1.x.patch" | 6 | SRC_URI[sha256sum] = "20d7d62e4e7ef05f221e0db2856b979540686342e7dd9973b815599c7057e168" |
7 | SRC_URI[sha256sum] = "40d980c33765359098837527e18eddefc9a24cea5b45e078a7f3bb5b032c6ecf" | ||
8 | 7 | ||
9 | inherit pypi python_setuptools_build_meta ptest-python-pytest cython | 8 | inherit pypi python_setuptools_build_meta ptest-python-pytest cython |
10 | 9 | ||