Cython 0.26 has been released today. There is a ticket for upgrading in Sage: https://trac.sagemath.org/ticket/23360

Two important notes:

- For the first time since long, the Sage distribution now builds with a 100% vanilla Cython, no patches are required. I hope this will make packagers happy!

- Cython now supports pickling for cdef classes. This is enabled by default in Cython, but I disabled it for Sage because we have lots of custom pickling support. It can be enabled in specific cases with

cimport cython

@cython.auto_pickle(True)
cdef class Foo:
    ....

--
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at https://groups.google.com/group/sage-devel.
For more options, visit https://groups.google.com/d/optout.

Reply via email to