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
python_version !=
On main, this passes:
assert_normalizes_to( "python_version != '3.8' and python_version < '3.10'", "python_version < '3.8' and python_version < '3.10' and python_version > '3.8'", );
But the second term is not equivalent. It should be python_version < '3.10' and (python_version < '3.8' or python_version > '3.8').
python_version < '3.10' and (python_version < '3.8' or python_version > '3.8')
The text was updated successfully, but these errors were encountered:
\cc @ibraheemdev
Sorry, something went wrong.
a046d23
charliermarsh
Successfully merging a pull request may close this issue.
On main, this passes:
But the second term is not equivalent. It should be
python_version < '3.10' and (python_version < '3.8' or python_version > '3.8')
.The text was updated successfully, but these errors were encountered: