Skip to content

Commit

Permalink
Update sd-scripts and allow python 3.10 to 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
bmaltais committed Nov 17, 2024
1 parent b332b1d commit d47e3e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sd-scripts
4 changes: 2 additions & 2 deletions setup/setup_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

# Constants
MIN_PYTHON_VERSION = (3, 10, 9)
MAX_PYTHON_VERSION = (3, 11, 0)
MAX_PYTHON_VERSION = (3, 13, 0)
LOG_DIR = "../logs/setup/"
LOG_LEVEL = "INFO" # Set to "INFO" or "WARNING" for less verbose logging

Expand All @@ -31,7 +31,7 @@ def check_python_version():
log.error(
f"The current version of python ({sys.version}) is not supported."
)
log.error("The Python version must be >= 3.10.9 and < 3.11.0.")
log.error("The Python version must be >= 3.10.9 and < 3.13.0.")
return False
return True
except Exception as e:
Expand Down

0 comments on commit d47e3e6

Please sign in to comment.