1gevent fails to build with Cython 3.0.10.  As per
2https://github.com/gevent/gevent/issues/2031, removing the
3cython.final decorator works around this.
4
5Upstream-Status: Pending
6Signed-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
17