jorisvandenbossche commented on code in PR #42034: URL: https://github.com/apache/arrow/pull/42034#discussion_r1634896023
########## python/pyarrow/src/arrow/python/udf.cc: ########## @@ -28,6 +28,9 @@ #include "arrow/util/checked_cast.h" #include "arrow/util/logging.h" +#if PY_VERSION_HEX < 0x030D00A4 Review Comment: ```suggestion // Py_IsFinalizing added in Python 3.13.0a4 #if PY_VERSION_HEX < 0x030D00A4 ``` -- 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]
