Skip to content

Commit 53fbade

Browse files
committed
bpy only supported with python 3.11
1 parent 06a4565 commit 53fbade

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/b13d/api/core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ def supported_apis() -> list:
122122

123123
apis = [Implementation.TRIMESH, Implementation.CADQUERY, Implementation.SOLID2, Implementation.MANIFOLD]
124124

125-
if ver[1] < 12:
126-
# blender bpy package currently not supported with python 3.12
125+
if ver[1] == 11:
126+
# blender bpy package currently only supported with python 3.11
127127
apis.append(Implementation.BLENDER)
128128

129129
return apis

0 commit comments

Comments
 (0)