Skip to content

Commit a19fdf7

Browse files
committed
Fix PY_VERSION_HEX check
1 parent ddd2033 commit a19fdf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

robotpy_build/include/gilsafe_object.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
namespace py = pybind11;
77

88
// Py_IsFinalizing is public API in 3.13
9-
#if PY_VERSION_HEX < 0x03130000
9+
#if PY_VERSION_HEX < 0x030D0000
1010
#define Py_IsFinalizing _Py_IsFinalizing
1111
#endif
1212

0 commit comments

Comments
 (0)