westonpace commented on issue #35586: URL: https://github.com/apache/arrow/issues/35586#issuecomment-1552980983
Hmm, do you know what version of cython you have installed? To support cython 3 we moved from: ``` cdef int check_status(const CStatus& status) nogil except -1: ``` to... ``` cdef int check_status(const CStatus& status) except -1 nogil: ``` I wonder if some older versions of cython don't recognize the "nogil at the end" syntax. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
