From 4402fd7741e91cde6500be6e443c4e91097a66a2 Mon Sep 17 00:00:00 2001 From: Tom Hammel Date: Tue, 24 Mar 2026 13:49:37 +0100 Subject: [PATCH 1/2] Bump version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9dc2d4c..8b6e61f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "aas_editor" -version = "0.4.11" +version = "0.4.12" dependencies = [ "PyQt6", "basyx-python-sdk@git+https://github.com/rwth-iat/basyx-python-sdk@aas_manager/v301#subdirectory=sdk", From 252cdd19ebf5644a8335bf219828ba1d63506a30 Mon Sep 17 00:00:00 2001 From: Tom Hammel Date: Tue, 24 Mar 2026 13:50:23 +0100 Subject: [PATCH 2/2] Use CPU-only torch for Ubuntu --- .github/workflows/release.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5e466fb..f6e3966 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -108,6 +108,10 @@ jobs: if: matrix.os == 'ubuntu-latest' run: sudo apt-get update && sudo apt-get install -y libegl1 libopengl0 + - name: Install CPU-only torch (Ubuntu only) + if: matrix.os == 'ubuntu-latest' + run: pip install torch --index-url https://download.pytorch.org/whl/cpu + - name: Install dependencies run: pip install -e .