Skip to content

Commit d47e3e6

Browse files
committed
Update sd-scripts and allow python 3.10 to 3.12
1 parent b332b1d commit d47e3e6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

sd-scripts

setup/setup_common.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
# Constants
1313
MIN_PYTHON_VERSION = (3, 10, 9)
14-
MAX_PYTHON_VERSION = (3, 11, 0)
14+
MAX_PYTHON_VERSION = (3, 13, 0)
1515
LOG_DIR = "../logs/setup/"
1616
LOG_LEVEL = "INFO" # Set to "INFO" or "WARNING" for less verbose logging
1717

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

0 commit comments

Comments
 (0)