summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-gevent/not-final.patch
blob: 444a195da49b0ec0b0729a488d001f3a162c5f39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
gevent fails to build with Cython 3.0.10.  As per
https://github.com/gevent/gevent/issues/2031, removing the
cython.final decorator works around this.

Upstream-Status: Pending
Signed-off-by: Ross Burton <ross.burton@arm.com>

--- a/src/gevent/_gevent_cqueue.pxd
+++ b/src/gevent/_gevent_cqueue.pxd
@@ -75,7 +75,6 @@ cdef class ItemWaiter(Waiter):
     cdef readonly Queue queue
 
 
-@cython.final
 cdef class UnboundQueue(Queue):
     pass