Skip to content

Commit 03b4590

Browse files
committed
updated pytorch to 2.7
Signed-off-by: bigcat88 <[email protected]>
1 parent 6c9c051 commit 03b4590

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ All notable changes to this project will be documented in this file.
66

77
This is a version with fixes for bugs we've discovered over the past month.
88

9-
## Changes
9+
## Changed
1010

1111
- Visionatrix service has been [updated](https://github.com/Visionatrix/Visionatrix/blob/main/CHANGELOG.md#220---2025-04-21) from version `2.1.0` to `2.2.0`.
12+
- PyTorch updated from version `2.6` to version `2.7`.
1213

1314
## Fixed
1415

@@ -27,7 +28,7 @@ This release contains breaking changes, first you need to uninstall old app **wi
2728
- Many useful small UI additions(`Export flow`, `Editing flow` actions).
2829
- Added support for `HaRP` deploy type - successor of `DockerSocketProxy`(Nextcloud 32+ only).
2930

30-
## Changes
31+
## Changed
3132

3233
- Visionatrix service has been updated from version `1.11.1` to `2.1.0`.
3334
- Now Visionatrix **correctly stores all models and configs** in the configured ExApp storage and no more breaking changes expected.

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ RUN --mount=type=cache,target=/root/.cache/pip \
5353
ARCH=$(uname -m) && \
5454
if [ "$ARCH" = "aarch64" ]; then \
5555
echo "Installing PyTorch for ARM64"; \
56-
venv/bin/python -m pip install torch==2.6.0 torchvision torchaudio; \
56+
venv/bin/python -m pip install torch==2.7.0 torchvision torchaudio; \
5757
elif [ "$BUILD_TYPE" = "rocm" ]; then \
58-
venv/bin/python -m pip install torch==2.6.0 torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm6.2.4; \
58+
venv/bin/python -m pip install torch==2.7.0 torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm6.3; \
5959
elif [ "$BUILD_TYPE" = "cpu" ]; then \
60-
venv/bin/python -m pip install torch==2.6.0 torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu; \
60+
venv/bin/python -m pip install torch==2.7.0 torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu; \
6161
else \
62-
venv/bin/python -m pip install torch==2.6.0 torchvision torchaudio; \
62+
venv/bin/python -m pip install torch==2.7.0 torchvision torchaudio; \
6363
fi
6464

6565
RUN --mount=type=cache,target=/root/.cache/pip \

0 commit comments

Comments
 (0)