mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-03 10:33:49 +00:00
Add UV_VENV_SEED
environment variable (#10715)
## Summary Closes https://github.com/astral-sh/uv/issues/7655.
This commit is contained in:
parent
8111650100
commit
1f29165796
4 changed files with 17 additions and 3 deletions
|
@ -2365,8 +2365,8 @@ pub struct VenvArgs {
|
|||
|
||||
/// Install seed packages (one or more of: `pip`, `setuptools`, and `wheel`) into the virtual environment.
|
||||
///
|
||||
/// Note `setuptools` and `wheel` are not included in Python 3.12+ environments.
|
||||
#[arg(long)]
|
||||
/// Note that `setuptools` and `wheel` are not included in Python 3.12+ environments.
|
||||
#[arg(long, value_parser = clap::builder::BoolishValueParser::new(), env = EnvVars::UV_VENV_SEED)]
|
||||
pub seed: bool,
|
||||
|
||||
/// Preserve any existing files or directories at the target path.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue