diff --git a/lib.include.sh b/lib.include.sh index f1185dbe1..de9f3b5dc 100644 --- a/lib.include.sh +++ b/lib.include.sh @@ -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" diff --git a/requirements-global.txt b/requirements-global.txt index 965e24671..d5a88689a 100644 --- a/requirements-global.txt +++ b/requirements-global.txt @@ -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 diff --git a/update.bat b/update.bat index 2bd4f6821..31a81d267 100644 --- a/update.bat +++ b/update.bat @@ -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