Skip to content

Commit f36cd71

Browse files
committed
Revert "docs: add venv to the extlinks and fix some more usage errors"
This reverts commit 20545ac.
1 parent 16a73a6 commit f36cd71

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

docs/conf.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@
109109
"tox": ("https://tox.readthedocs.io/%s", None),
110110
"twine": ("https://twine.readthedocs.io/%s", None),
111111
"uv": ("https://docs.uv.dev/%s", None),
112-
"venv": ("https://docs.python.org/3/library/venv%s", None),
113112
"virtualenv": ("https://virtualenv.pypa.io/%s", None),
114113
"yapf": ("https://github.com/google/yapf/%s", None)
115114
}

docs/topics/02_dependency-management.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ We evaluated the most prominent options for managing Python project dependencies
118118
## Chosen Tool(s)
119119

120120
- **{uv}`uv<>`** as the primary **Dependency Manager**.
121-
- **{virtualenv}`virtualenv<>` / {venv-tutorial}`venv<>`** (orchestrated by uv) for environment management.
121+
- **{virtualenv-documentation}`virtualenv<>` / {venv-tutorial}`venv<>`** (orchestrated by uv) for environment management.
122122

123123
## Justification for the Choice
124124

docs/workflow/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Here's how the template facilitates your day-to-day coding work:
2626
# Use uv add/remove to manage dependencies
2727
```
2828

29-
Your environment is isolated using standard virtual environments ({venv}`venv<>`/{virtualenv}`virtualenv<>`).
29+
Your environment is isolated using standard virtual environments ([`venv`](python:venv-tutorial)/[`virtualenv`](virtualenv-documentation)).
3030

3131
2. **Code, Stage, and Commit:** As you write code, static analysis tools are often integrated into your editor via Language Server Protocol (LSP) for real-time feedback (using configurations like `pyrightconfig.json` ([Pyright (05)](../topics/05_type-checking.md)) and `.ruff.toml` ([Ruff (03, 04)](../topics/03_code-formatting.md))). When you're ready to commit changes:
3232

0 commit comments

Comments
 (0)