-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Warn when an unsupported Python version is encountered (#3250)
I rebased #2757 then realized that we want to implement this for more than `uv venv`. Closes #2587 Closes #2757 ``` ❯ cargo run -q -- pip install -p /Users/mz/bin/python3.7 anyio warning: uv is only compatible with Python 3.8+, found Python 3.7.17. Audited 1 package in 84ms ❯ cargo run -q -- venv -p /Users/mz/bin/python3.7 warning: uv is only compatible with Python 3.8+, found Python 3.7.17. Using Python 3.7.17 interpreter at: /Users/mz/bin/python3.7 Creating virtualenv at: .venv Activate with: source .venv/bin/activate ``` --------- Co-authored-by: Stevie Gayet <stegayet@users.noreply.github.com>
- Loading branch information
Showing
4 changed files
with
36 additions
and
10 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters