Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion install.bat
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pushd "%~dp0" || call :die "Cannot cd to script directory"
set "SCRIPT_DIR=%CD%"
set "VENV_DIR=%SCRIPT_DIR%\\venv"
set "VERSION_FILE=%SCRIPT_DIR%\\scripts\\util\\version_check.py"
set "MIN_PY=3.10" & set "MAX_PY=3.13"
set "MIN_PY=3.10" & set "MAX_PY=3.14"

goto :main

Expand Down
4 changes: 2 additions & 2 deletions lib.include.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ export OT_SCRIPT_DEBUG="${OT_SCRIPT_DEBUG:-false}"
# Internal environment variables.
# NOTE: Version check supports "3", "3.1" and "3.1.5" specifier formats.
export OT_PYTHON_VERSION_MINIMUM="3.10"
export OT_PYTHON_VERSION_TOO_HIGH="3.13"
export OT_CONDA_USE_PYTHON_VERSION="3.10"
export OT_PYTHON_VERSION_TOO_HIGH="3.14"
export OT_CONDA_USE_PYTHON_VERSION="3.13"
export OT_MUST_INSTALL_REQUIREMENTS="false"
export OT_UPDATE_METADATA_FILE="${SCRIPT_DIR}/update.var"
export OT_HOST_OS="$(uname -s)"
Expand Down
12 changes: 6 additions & 6 deletions requirements-cuda.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# pytorch
--extra-index-url https://download.pytorch.org/whl/cu128
torch==2.8.0+cu128
torchvision==0.23.0+cu128
onnxruntime-gpu==1.22.0
nvidia-nccl-cu12==2.27.3; sys_platform == "linux"
triton-windows==3.4.0.post20; sys_platform == "win32"
torch==2.9.1+cu128
torchvision==0.24.1+cu128
onnxruntime-gpu==1.23.2
nvidia-nccl-cu12==2.27.5; sys_platform == "linux"
triton-windows==3.5.1.post24; sys_platform == "win32"

# optimizers
bitsandbytes==0.46.0 # bitsandbytes for 8-bit optimizers and weight quantization
bitsandbytes==0.49.1 # bitsandbytes for 8-bit optimizers and weight quantization
6 changes: 3 additions & 3 deletions requirements-default.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# pytorch
torch==2.8.0
torchvision==0.23.0
onnxruntime==1.22.1
torch==2.9.1
torchvision==0.24.1
onnxruntime==1.23.2

# optimizers
# TODO
10 changes: 5 additions & 5 deletions requirements-global.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ parse==1.20.2
setuptools==81.0.0

# pytorch
accelerate==1.7.0
safetensors==0.5.3
tensorboard==2.19.0
pytorch-lightning==2.5.1.post0
accelerate==1.12.0
safetensors==0.7.0
tensorboard==2.20.0
pytorch-lightning==2.6.1

# diffusion models
-e git+https://github.com/huggingface/diffusers.git@6a1904e#egg=diffusers
gguf==0.17.1
transformers==4.56.2
transformers==4.57.6
sentencepiece==0.2.1 # transitive dependency of transformers for tokenizer loading
omegaconf==2.3.0 # needed to load stable diffusion from single ckpt files
invisible-watermark==0.2.0 # needed for the SDXL pipeline
Expand Down
6 changes: 3 additions & 3 deletions requirements-rocm.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

# pytorch
--extra-index-url https://download.pytorch.org/whl/rocm6.3
torch==2.7.1+rocm6.3 #intentionally not upgraded because of reported problems
torchvision==0.22.1+rocm6.3
onnxruntime==1.22.1
torch==2.9.1+rocm6.3
torchvision==0.24.1+rocm6.3
onnxruntime==1.23.2

# optimizers
# TODO
2 changes: 1 addition & 1 deletion start-ui.bat
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ if errorlevel 1 (
)

echo.
%PYTHON% "%~dp0scripts\util\version_check.py" 3.10 3.13 2>&1
%PYTHON% "%~dp0scripts\util\version_check.py" 3.10 3.14 2>&1
if errorlevel 1 (
echo.
goto :wrong_python_version
Expand Down
2 changes: 1 addition & 1 deletion update.bat
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ if errorlevel 1 (
)

echo.
"%PYTHON%" "%~dp0scripts\util\version_check.py" 3.10 3.13 2>&1
"%PYTHON%" "%~dp0scripts\util\version_check.py" 3.10 3.14 2>&1
if errorlevel 1 (
echo.
goto :wrong_python_version
Expand Down