Skip to content
Open
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 lib.include.sh
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ function install_requirements_in_active_env {
# when running in existing environments. It ensures that all libraries will
# be upgraded to the same versions as a fresh reinstall of requirements.txt.
print "Installing requirements in active environment..."
run_pip_in_active_env install --upgrade --upgrade-strategy eager pip setuptools==81.0.0
run_pip_in_active_env install --upgrade --upgrade-strategy eager pip setuptools==83.0.0
run_pip_in_active_env install --upgrade --upgrade-strategy eager -r requirements-global.txt -r "$(get_platform_requirements_path)"
export OT_MUST_INSTALL_REQUIREMENTS="false"

Expand Down
4 changes: 2 additions & 2 deletions requirements-global.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ av==16.1.0
yt-dlp #no pinned version, frequently updated for compatibility with sites
scenedetect==0.7
parse==1.20.2
setuptools==81.0.0
setuptools==83.0.0

# pytorch
accelerate==1.12.0
safetensors==0.8.0
tensorboard==2.20.0
tensorboard==2.21.0

# diffusion models
-e git+https://github.com/huggingface/diffusers.git@1ffa423#egg=diffusers
Expand Down
2 changes: 1 addition & 1 deletion update.bat
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ goto :install_dependencies
:install_dependencies
echo Installing dependencies...
echo Upgrading pip and setuptools...
"%PYTHON%" -m pip install --upgrade --upgrade-strategy eager pip setuptools==81.0.0
"%PYTHON%" -m pip install --upgrade --upgrade-strategy eager pip setuptools==83.0.0
if errorlevel 1 (
echo Error: pip upgrade failed.
goto :end_error
Expand Down