## Summary Closes #12855 This PR also fixed an issue, where `python_request` was matched against `PythonVersion::Default`. Previously, if `python_request` was `3.13t`, it would match the last branch, triggering a download of the Python version if it wasn't already installed.6b7f60c1ea/crates/uv/src/commands/project/init.rs (L421-L448)```console ❯ uv init -v --managed-python --python 3.13t foo DEBUG uv 0.6.14 (a4cec56dc2025-04-09) DEBUG Searching for Python 3.13t in managed installations DEBUG Searching for managed installations at `/Users/Jo/.local/share/uv/python` DEBUG Found managed installation `cpython-3.13.1-macos-aarch64-none` DEBUG Found `cpython-3.13.1-macos-aarch64-none` at `/Users/Jo/.local/share/uv/python/cpython-3.13.1-macos-aarch64-none/bin/python3.13` (managed installations) DEBUG Skipping interpreter at `/Users/Jo/.local/share/uv/python/cpython-3.13.1-macos-aarch64-none/bin/python3.13` from managed installations: does not satisfy request `3.13t` DEBUG Skipping incompatible managed installation `cpython-3.12.8-macos-aarch64-none` DEBUG Skipping incompatible managed installation `pypy-3.11.11-macos-aarch64-none` DEBUG Requested Python not found, checking for available download... DEBUG Acquired lock for `/Users/Jo/.local/share/uv/python` DEBUG Using request timeout of 30s INFO Fetching requested Python... Downloading cpython-3.13.3+freethreaded-macos-aarch64-none (49.9MiB) DEBUG Downloading https://github.com/astral-sh/python-build-standalone/releases/download/20250409/cpython-3.13.3%2B20250409-aarch64-apple-darwin-freethreaded%2Bpgo%2Blto-full.tar.zst to temporary location: /Users/Jo/.local/share/uv/python/.temp/.tmpfoOLkE DEBUG Extracting cpython-3.13.3%2B20250409-aarch64-apple-darwin-freethreaded%2Bpgo%2Blto-full.tar.zst Downloaded cpython-3.13.3+freethreaded-macos-aarch64-none DEBUG Moving /Users/Jo/.local/share/uv/python/.temp/.tmpfoOLkE/python/install to /Users/Jo/.local/share/uv/python/cpython-3.13.3+freethreaded-macos-aarch64-none DEBUG Released lock at `/Users/Jo/.local/share/uv/python/.lock` DEBUG Writing Python versions to `/private/tmp/foo/.python-version` Initialized project `foo` at `/private/tmp/foo` ❯ cat foo/.python-version 3.13 ``` After this PR, uv will not try to download it: ```console ❯ uv python uninstall 3.13t ❯ cargo run -- init -v --managed-python --python 3.13t bar DEBUG uv 0.6.14+15 (6b7f60c1e2025-04-12) DEBUG Writing Python versions to `/private/tmp/bar/.python-version` Initialized project `bar` at `/private/tmp/bar` ❯ cat bar/.python_version 3.13t ```
Crates
uv-bench
Functionality for benchmarking uv.
uv-cache-key
Generic functionality for caching paths, URLs, and other resources across platforms.
uv-distribution-filename
Parse built distribution (wheel) and source distribution (sdist) filenames to extract structured metadata.
uv-distribution-types
Abstractions for representing built distributions (wheels) and source distributions (sdists), and the sources from which they can be downloaded.
uv-install-wheel-rs
Install built distributions (wheels) into a virtual environment.
uv-once-map
A waitmap-like concurrent hash map for executing tasks
exactly once.
uv-pep440-rs
Utilities for interacting with Python version numbers and specifiers.
uv-pep508-rs
Utilities for parsing and evaluating dependency specifiers, previously known as PEP 508.
uv-platform-tags
Functionality for parsing and inferring Python platform tags as per PEP 425.
uv-cli
Command-line interface for the uv package manager.
uv-build-frontend
A PEP 517-compatible build frontend for uv.
uv-cache
Functionality for caching Python packages and associated metadata.
uv-client
Client for interacting with PyPI-compatible HTTP APIs.
uv-dev
Development utilities for uv.
uv-dispatch
A centralized struct for resolving and building source distributions in isolated environments.
Implements the traits defined in uv-types.
uv-distribution
Client for interacting with built distributions (wheels) and source distributions (sdists). Capable of fetching metadata, distribution contents, etc.
uv-extract
Utilities for extracting files from archives.
uv-fs
Utilities for interacting with the filesystem.
uv-git
Functionality for interacting with Git repositories.
uv-installer
Functionality for installing Python packages into a virtual environment.
uv-python
Functionality for detecting and leveraging the current Python interpreter.
uv-normalize
Normalize package and extra names as per Python specifications.
uv-requirements
Utilities for reading package requirements from pyproject.toml and requirements.txt files.
uv-resolver
Functionality for resolving Python packages and their dependencies.
uv-shell
Utilities for detecting and manipulating shell environments.
uv-types
Shared traits for uv, to avoid circular dependencies.
uv-pypi-types
General-purpose type definitions for types used in PyPI-compatible APIs.
uv-virtualenv
A venv replacement to create virtual environments in Rust.
uv-warnings
User-facing warnings for uv.
uv-workspace
Workspace abstractions for uv.
uv-requirements-txt
Functionality for parsing requirements.txt files.