mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-14 00:35:00 +00:00
Respect --isolated
in uv python install
(#4938)
We ignore Python version files when `--isolated` is used, logging that we skipped them if they exist.
This commit is contained in:
parent
acfb57b072
commit
a4044be95b
4 changed files with 41 additions and 18 deletions
|
@ -13,9 +13,11 @@ pub use crate::pointer_size::PointerSize;
|
|||
pub use crate::prefix::Prefix;
|
||||
pub use crate::python_version::PythonVersion;
|
||||
pub use crate::target::Target;
|
||||
pub use crate::version_files::{request_from_version_file, requests_from_version_file};
|
||||
pub use crate::version_files::{
|
||||
request_from_version_file, requests_from_version_file, version_file_exists,
|
||||
versions_file_exists, PYTHON_VERSIONS_FILENAME, PYTHON_VERSION_FILENAME,
|
||||
};
|
||||
pub use crate::virtualenv::{Error as VirtualEnvError, PyVenvConfiguration, VirtualEnvironment};
|
||||
|
||||
mod discovery;
|
||||
pub mod downloads;
|
||||
mod environment;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue