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

Commit ca45a83

Browse files
add reasoning for using optional dependency
1 parent a03ac47 commit ca45a83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/guides/python/blender-render.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ 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 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.
55+
We'll also add [bpy](https://docs.blender.org/api/current/info_overview.html#python-in-blender) as an optional dependency. By making it an optional dependency, we can choose to only install it for the containers that require it, reducing the size of the containers. `bpy` 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
5858
uv add bpy==4.2.0 --optional ml

0 commit comments

Comments
 (0)