From b0bb2531e1a29ab7ea8b78db61786cfd3bc62f70 Mon Sep 17 00:00:00 2001 From: Grzegorz Bokota Date: Tue, 9 Jun 2026 10:25:24 +0200 Subject: [PATCH] chore: Remove `pyside2` form extras during constraints generation The `pyside2`no longer have releases and is about to remove from project (as napari 0.7.0 changed bundle to `PySide6`) --- .github/workflows/upgrade-dependencies.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/upgrade-dependencies.yml b/.github/workflows/upgrade-dependencies.yml index 3eb88570b..9b0f3063f 100644 --- a/.github/workflows/upgrade-dependencies.yml +++ b/.github/workflows/upgrade-dependencies.yml @@ -33,7 +33,7 @@ jobs: run: | set -x pip install -U uv - flags=(--extra pyqt6 --extra pyside2 --extra pyside6 --extra test --extra pyinstaller_base) + flags=(--extra pyqt6 --extra pyside6 --extra test --extra pyinstaller_base) for pyv in 3.10 3.11 3.12 3.13 3.14; do uv pip compile --python-version ${pyv} --upgrade --output-file requirements/constraints_py${pyv}.txt pyproject.toml requirements/version_denylist.txt "${flags[@]}"