pitrou commented on code in PR #43606: URL: https://github.com/apache/arrow/pull/43606#discussion_r1707375497
########## python/CMakeLists.txt: ########## @@ -855,6 +856,10 @@ set(CYTHON_FLAGS "${CYTHON_FLAGS}" "--warning-errors") # undocumented Cython feature. set(CYTHON_FLAGS "${CYTHON_FLAGS}" "--no-c-in-traceback") +if(CYTHON_VERSION VERSION_GREATER_EQUAL "3.1.0a0") + set(CYTHON_FLAGS "${CYTHON_FLAGS}" "-Xfreethreading_compatible=True") Review Comment: You mean it would re-enable the GIL for the whole process lifetime? Or only when calling into PyArrow? -- 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-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org