Skip to content

Commit f5ea1e9

Browse files
committed
bump torch version
1 parent d50b95b commit f5ea1e9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
### Minor:
1616
* gradio bumped to 3.29.0
17+
* torch bumped to 2.0.1
1718
* --subpath option for gradio for use with reverse proxy
1819
* linux/OSX: use existing virtualenv if already active (the VIRTUAL_ENV environment variable)
1920
* possible frontend optimization: do not apply localizations if there are none
@@ -23,7 +24,6 @@
2324
* allow directories starting with . to still list their models for lora, checkpoints, etc
2425
* put infotext options into their own category in settings tab
2526
* do not show licenses page when user selects Show all pages in settings
26-
*
2727

2828
### Extensions:
2929
* Tooltip localization support

Diff for: launch.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ def run_extensions_installers(settings_file):
237237

238238

239239
def prepare_environment():
240-
torch_command = os.environ.get('TORCH_COMMAND', "pip install torch==2.0.0 torchvision==0.15.1 --extra-index-url https://download.pytorch.org/whl/cu118")
240+
torch_command = os.environ.get('TORCH_COMMAND', "pip install torch==2.0.1 torchvision==0.15.2 --extra-index-url https://download.pytorch.org/whl/cu118")
241241
requirements_file = os.environ.get('REQS_FILE', "requirements_versions.txt")
242242

243243
xformers_package = os.environ.get('XFORMERS_PACKAGE', 'xformers==0.0.17')

0 commit comments

Comments
 (0)