Remove trailing period from user-facing messages (#5218)

## Summary

Per #5209, we only show periods in messages when the message itself
spans more than a single sentence.
This commit is contained in:
Charlie Marsh 2024-07-19 10:43:49 -04:00 committed by GitHub
parent f2e2825d1b
commit ed9b820815
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
55 changed files with 377 additions and 379 deletions

View file

@ -898,7 +898,7 @@ fn warn_on_unsupported_python(interpreter: &Interpreter) {
// Warn on usage with an unsupported Python version
if interpreter.python_tuple() < (3, 8) {
warn_user_once!(
"uv is only compatible with Python 3.8+, found Python {}.",
"uv is only compatible with Python >=3.8, found Python {}",
interpreter.python_version()
);
}