Skip to content

Commit 83bcafb

Browse files
Set the default Python version to 3.13 in the uv installation guide (#4480)
* Set the default python version to 3.13 in the uv installation guide. * Capitalize Python --------- Co-authored-by: Francisco Manríquez Novoa <49853152+chopan050@users.noreply.github.com>
1 parent 7e950b3 commit 83bcafb

File tree

1 file changed

+9
-3
lines changed
  • docs/source/installation

1 file changed

+9
-3
lines changed

docs/source/installation/uv.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,10 @@ The following commands will
153153
The name for the Python project is *manimations*, which you can change
154154
to anything you like.
155155

156+
Manim does not yet support Python 3.14 and the Python version is therefore set to 3.13.
157+
156158
```bash
157-
uv init manimations
159+
uv init --python 3.13 manimations
158160
cd manimations
159161
uv add manim
160162
```
@@ -200,8 +202,10 @@ Manim itself! The following commands will
200202
The name for the Python project is *manimations*, which you can change
201203
to anything you like.
202204

205+
Manim does not yet support Python 3.14 and the Python version is therefore set to 3.13.
206+
203207
```bash
204-
uv init manimations
208+
uv init --python 3.13 manimations
205209
cd manimations
206210
uv add manim
207211
```
@@ -253,11 +257,13 @@ As soon as the required dependencies are installed, you can create
253257
a Python project (feel free to change the name *manimations* used below
254258
to some other name) with a local environment containing Manim by running
255259
```bash
256-
uv init manimations
260+
uv init --python 3.13 manimations
257261
cd manimations
258262
uv add manim
259263
```
260264

265+
Manim does not yet support Python 3.14 and the Python version is therefore set to 3.13.
266+
261267
:::::
262268

263269
::::::

0 commit comments

Comments
 (0)