Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit a03ac47

Browse files
change bpy to optional dependency
1 parent 015ff29 commit a03ac47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/guides/python/blender-render.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ We can then resolve our dependencies.
5252
uv sync
5353
```
5454

55-
We'll also add [bpy](https://docs.blender.org/api/current/info_overview.html#python-in-blender) as a dependency. This is the API that will interact with the Blender environment for setting up and rendering our scenes. The version of `bpy` should match the version of Blender you intend on using.
55+
We'll also add [bpy](https://docs.blender.org/api/current/info_overview.html#python-in-blender) as an optional dependency. This is the API that will interact with the Blender environment for setting up and rendering our scenes. The version of `bpy` should match the version of Blender you intend on using.
5656

5757
```bash
58-
uv add bpy==4.2.0
58+
uv add bpy==4.2.0 --optional ml
5959
```
6060

6161
We'll organize our project structure like so:

0 commit comments

Comments
 (0)