Skip to content

Commit

Permalink
made b4.0 use python 3.10 venv
Browse files Browse the repository at this point in the history
added '4.0' to version check for launching blender
  • Loading branch information
JoshQuake committed Jul 23, 2024
1 parent 70937fc commit 62b97bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def validate_exe(exe_path: Path) -> bool:

def launch_blender(version: str, debug: str):
virtual_env = PYTHON_3_11_VIRTUAL_ENV
if version in ['3.6']:
if version in ['3.6', '4.0']:
virtual_env = PYTHON_3_10_VIRTUAL_ENV

if not validate_venv(virtual_env):
Expand Down

0 comments on commit 62b97bb

Please sign in to comment.