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
e.g. in https://github.com/astral-sh/puffin/blob/6cad0f609caba5354f528cc3dba813f0c26a0e27/crates/puffin-cli/tests/pip_install_scenarios.rs#L688
we have !( a>=3.0.0 ) but since it's just a single item in the negation we should just perform the complement.
!( a>=3.0.0 )
The text was updated successfully, but these errors were encountered:
Avoid showing negations of single ranges in error messages
162eb7c
Closes #980
da60e6b
Closes #980 # Conflicts: # crates/puffin/tests/pip_install_scenarios.rs
Avoid showing negations of ranges in error messages (#981)
ae7a2cd
Successfully merging a pull request may close this issue.
e.g. in https://github.com/astral-sh/puffin/blob/6cad0f609caba5354f528cc3dba813f0c26a0e27/crates/puffin-cli/tests/pip_install_scenarios.rs#L688
we have
!( a>=3.0.0 )
but since it's just a single item in the negation we should just perform the complement.The text was updated successfully, but these errors were encountered: