Skip to content

Commit

Permalink
Make min Python version 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
robinjhuang committed May 4, 2024
1 parent 8c4430b commit 32ff921
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions comfy_cli/cmdline.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ def install(
if repo_dir is not None:
comfy_path = str(repo_dir.working_dir)

if checker.python_version.major < 3:
if checker.python_version.major < 3.9:
print(
"[bold red]Python version 3.6 or higher is required to run ComfyUI.[/bold red]"
"[bold red]Python version 3.9 or higher is required to run ComfyUI.[/bold red]"
)
print(
f"You are currently using Python version {env_checker.format_python_version(checker.python_version)}."
Expand Down

0 comments on commit 32ff921

Please sign in to comment.