Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sys.implementation's version should be GraalPy's version #487

Closed
henryiii opened this issue Mar 28, 2025 · 0 comments
Closed

sys.implementation's version should be GraalPy's version #487

henryiii opened this issue Mar 28, 2025 · 0 comments
Assignees

Comments

@henryiii
Copy link

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:

>>>> import sys
>>>> sys.implementation.version
sys.pypy_version_info(major=7, minor=3, micro=11, releaselevel='final', serial=0)
>>>> sys.version_info
sys.version_info(major=3, minor=9, micro=16, releaselevel='final', serial=0)

This should be a named tuple for sys.implementation.version, and a hex for sys.implementation.hexversion.
See pybind/pybind11#5586.

As a workaround, __graalpython__.get_graalvm_version() gives the version as a string.

@msimacek msimacek self-assigned this Mar 31, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants