From ce6d2379aaba57d536f3e34e2543b5760124f112 Mon Sep 17 00:00:00 2001 From: stevenae Date: Tue, 27 May 2025 11:09:26 -0400 Subject: [PATCH 1/4] Update environments.md Per 13624 and 1472. Built and checked docs locally. --- docs/pip/environments.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/pip/environments.md b/docs/pip/environments.md index 978cfb0b0..8c99b2dc8 100644 --- a/docs/pip/environments.md +++ b/docs/pip/environments.md @@ -15,6 +15,10 @@ uv supports creating virtual environments, e.g., to create a virtual environment $ uv venv ``` +!!! note + + Running `uv venv` will overwrite any existing `.venv` directory. + A specific name or path can be specified, e.g., to create a virtual environment at `my-name`: ```console From beae144073d67223a9eed0430061bd2746a1a4c3 Mon Sep 17 00:00:00 2001 From: stevenae Date: Tue, 27 May 2025 11:21:17 -0400 Subject: [PATCH 2/4] Update environments.md --- docs/pip/environments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pip/environments.md b/docs/pip/environments.md index 8c99b2dc8..29c8c1f01 100644 --- a/docs/pip/environments.md +++ b/docs/pip/environments.md @@ -16,7 +16,7 @@ $ uv venv ``` !!! note - + Running `uv venv` will overwrite any existing `.venv` directory. A specific name or path can be specified, e.g., to create a virtual environment at `my-name`: From 0c90605bd4aee8bd07a0a4058b93be414f3c5aeb Mon Sep 17 00:00:00 2001 From: stevenae Date: Tue, 3 Jun 2025 11:21:17 -0400 Subject: [PATCH 3/4] Update environments.md --- docs/pip/environments.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/pip/environments.md b/docs/pip/environments.md index 29c8c1f01..3f8bca3f0 100644 --- a/docs/pip/environments.md +++ b/docs/pip/environments.md @@ -15,16 +15,16 @@ uv supports creating virtual environments, e.g., to create a virtual environment $ uv venv ``` -!!! note - - Running `uv venv` will overwrite any existing `.venv` directory. - A specific name or path can be specified, e.g., to create a virtual environment at `my-name`: ```console $ uv venv my-name ``` +!!! note + + Running `uv venv` will overwrite any existing virtual environment in the `.venv` directory. Specifying `my-name` will overwrite any existing virtual environment in the `my-name` directory. + A Python version can be requested, e.g., to create a virtual environment with Python 3.11: ```console From 991715c6b4986cfdce6f01f97b87bf2669e2442c Mon Sep 17 00:00:00 2001 From: stevenae Date: Tue, 3 Jun 2025 17:10:17 -0400 Subject: [PATCH 4/4] Update environments.md --- docs/pip/environments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pip/environments.md b/docs/pip/environments.md index 3f8bca3f0..a6624565a 100644 --- a/docs/pip/environments.md +++ b/docs/pip/environments.md @@ -23,7 +23,7 @@ $ uv venv my-name !!! note - Running `uv venv` will overwrite any existing virtual environment in the `.venv` directory. Specifying `my-name` will overwrite any existing virtual environment in the `my-name` directory. + Running `uv venv` will overwrite any existing virtual environment in the `.venv` directory. Specifying `my-name` will overwrite any existing virtual environment in the `my-name` directory. A Python version can be requested, e.g., to create a virtual environment with Python 3.11: