You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PyModule_GetFilenameObject is not implemented in GraalPy, it seems. There is the older and deprecated PyModule_GetFilename (both are part of the Stable ABI), as well, I didn't check this one.
pybind11 is working around this by manually accessing __file__ for GraalPy < 25. See pybind/pybind11#5584. Pybind11 is now assuming that this will be fixed in 25.0, the workaround will no longer be active then.
The text was updated successfully, but these errors were encountered:
PyModule_GetFilenameObject
is not implemented in GraalPy, it seems. There is the older and deprecatedPyModule_GetFilename
(both are part of the Stable ABI), as well, I didn't check this one.pybind11 is working around this by manually accessing
__file__
for GraalPy < 25. See pybind/pybind11#5584. Pybind11 is now assuming that this will be fixed in 25.0, the workaround will no longer be active then.The text was updated successfully, but these errors were encountered: