From 7cc56be0f1741896783de49f1d5befd27ba79303 Mon Sep 17 00:00:00 2001 From: Grzegorz Bokota Date: Thu, 26 Mar 2026 00:18:31 +0100 Subject: [PATCH 1/2] chore: Limit superqt version bellow 0.8.0 when install pyside2 backend --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 7141614f0..a00078643 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -134,6 +134,7 @@ pyside = [ pyside2 = [ "PySide2!=5.15.0,>=5.12.3", "napari[pyside]<0.7.0", + "superqt<0.8.0", ] pyside6 = [ "PySide6", From 278a0441cdc68100f6c4cef89b6a177e08b68f03 Mon Sep 17 00:00:00 2001 From: Grzegorz Bokota Date: Thu, 26 Mar 2026 00:40:01 +0100 Subject: [PATCH 2/2] add docstring with explanation --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a00078643..0ea161a09 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -134,7 +134,7 @@ pyside = [ pyside2 = [ "PySide2!=5.15.0,>=5.12.3", "napari[pyside]<0.7.0", - "superqt<0.8.0", + "superqt<0.8.0", # superqt 0.8+ uses type annotations which are not supported in pyside2, so we need to use older version ] pyside6 = [ "PySide6",