You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "westonpace (via GitHub)" <gi...@apache.org> on 2023/05/18 12:28:56 UTC

[GitHub] [arrow] westonpace commented on issue #35586: Fails to build PyArrow@12.0.0

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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org