We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
From https://www.python.org/dev/peps/pep-0425/#python-tag
Other Python implementations should use sys.implementation.name.
We should probably use sys.implementation.name in packaging.tags, instead of platform.python_implementation().lower(), if it exists.
sys.implementation.name
platform.python_implementation().lower()
packaging/packaging/tags.py
Line 341 in d09b0b5
Relevant discussion about platform.python_implementation() vs sys.implementation: https://www.python.org/dev/peps/pep-0421/#platform-python-implementation
platform.python_implementation()
sys.implementation
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
From https://www.python.org/dev/peps/pep-0425/#python-tag
We should probably use
sys.implementation.name
in packaging.tags, instead ofplatform.python_implementation().lower()
, if it exists.packaging/packaging/tags.py
Line 341 in d09b0b5
Relevant discussion about
platform.python_implementation()
vssys.implementation
: https://www.python.org/dev/peps/pep-0421/#platform-python-implementationThe text was updated successfully, but these errors were encountered: