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
PEP 508 says that python_version is {major}.{minor} and that >= is a version-aware-comparison operator.
python_version
{major}.{minor}
>=
There are real-world examples like
python_version >= "3.5.2"
that should be interpreted as >= "3.6" but we currently do not. Maybe passing in some kind of precision to VersionIntervals.add_spec would help...
>= "3.6"
VersionIntervals.add_spec
This might also help with supporting "in" for python_version
The text was updated successfully, but these errors were encountered:
No branches or pull requests
PEP 508 says that
python_version
is{major}.{minor}
and that>=
is a version-aware-comparison operator.There are real-world examples like
that should be interpreted as
>= "3.6"
but we currently do not. Maybe passing in some kind of precision toVersionIntervals.add_spec
would help...This might also help with supporting "in" for python_version
The text was updated successfully, but these errors were encountered: