diff options
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-gevent/not-final.patch')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-gevent/not-final.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-gevent/not-final.patch b/meta-python/recipes-devtools/python/python3-gevent/not-final.patch new file mode 100644 index 0000000000..444a195da4 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-gevent/not-final.patch | |||
@@ -0,0 +1,16 @@ | |||
1 | gevent fails to build with Cython 3.0.10. As per | ||
2 | https://github.com/gevent/gevent/issues/2031, removing the | ||
3 | cython.final decorator works around this. | ||
4 | |||
5 | Upstream-Status: Pending | ||
6 | Signed-off-by: Ross Burton <ross.burton@arm.com> | ||
7 | |||
8 | --- a/src/gevent/_gevent_cqueue.pxd | ||
9 | +++ b/src/gevent/_gevent_cqueue.pxd | ||
10 | @@ -75,7 +75,6 @@ cdef class ItemWaiter(Waiter): | ||
11 | cdef readonly Queue queue | ||
12 | |||
13 | |||
14 | -@cython.final | ||
15 | cdef class UnboundQueue(Queue): | ||
16 | pass | ||