From 3b05ba3794b458051beee42c7924df82f8e6070b Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sun, 18 May 2025 10:31:44 -0700 Subject: python3-propcache: Fix build with cython 3.1 Signed-off-by: Khem Raj --- .../0001-Fix-build-with-cython-3.1.x.patch | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 meta-python/recipes-devtools/python/python3-propcache/0001-Fix-build-with-cython-3.1.x.patch (limited to 'meta-python/recipes-devtools/python/python3-propcache') 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 new file mode 100644 index 0000000000..3b86b23c00 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-propcache/0001-Fix-build-with-cython-3.1.x.patch @@ -0,0 +1,34 @@ +From 8d44d867f7cd86da4edf328e06b13778577ea4b7 Mon Sep 17 00:00:00 2001 +From: WXbet <57314510+WXbet@users.noreply.github.com> +Date: Thu, 15 May 2025 21:54:48 +0200 +Subject: [PATCH] Fix build with cython 3.1.x + +closes #113 + +Upstream-Status: Submitted [https://github.com/aio-libs/propcache/pull/114] +Signed-off-by: Khem Raj +--- + packaging/pep517_backend/_backend.py | 2 +- + requirements/cython.txt | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/packaging/pep517_backend/_backend.py b/packaging/pep517_backend/_backend.py +index 7588db3..f75b83a 100644 +--- a/packaging/pep517_backend/_backend.py ++++ b/packaging/pep517_backend/_backend.py +@@ -379,7 +379,7 @@ def get_requires_for_build_wheel( + elif sysconfig.get_config_var('Py_GIL_DISABLED'): + c_ext_build_deps = ['Cython ~= 3.1.0a1'] + else: +- c_ext_build_deps = ['Cython ~= 3.0.12'] ++ c_ext_build_deps = ['Cython ~= 3.1'] + + return _setuptools_get_requires_for_build_wheel( + config_settings=config_settings, +diff --git a/requirements/cython.txt b/requirements/cython.txt +index 69a1d6f..5b356ed 100644 +--- a/requirements/cython.txt ++++ b/requirements/cython.txt +@@ -1 +1 @@ +-cython==3.0.12 ++cython~=3.1 -- cgit v1.2.3-54-g00ecf