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
The way to get GraalPy's version should be sys.implementation.version, but for some reason GraalPy 24.1.0 returns sys.version_info instead (3.11.7.alpha), which isn't helpful. This is supposed to be the implementation version. For example, on PyPy 7.3.11:
The way to get GraalPy's version should be
sys.implementation.version
, but for some reason GraalPy 24.1.0 returnssys.version_info
instead (3.11.7.alpha), which isn't helpful. This is supposed to be the implementation version. For example, on PyPy 7.3.11:This should be a named tuple for
sys.implementation.version
, and a hex forsys.implementation.hexversion
.See pybind/pybind11#5586.
As a workaround,
__graalpython__.get_graalvm_version()
gives the version as a string.The text was updated successfully, but these errors were encountered: