We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ee3c83 commit 0bb5323Copy full SHA for 0bb5323
tests/test_gui_class.py
@@ -87,8 +87,8 @@ class Foo:
87
def test_slots_guiclass():
88
"""Test that the guiclass decorator works as expected."""
89
90
- psyg_version = tuple(int(x) for x in psygnal.__version__.split(".")[:3])
91
- old_psygnal = psyg_version < (0, 6, 1)
+ psyg_v = tuple(int(x.split("r")[0]) for x in psygnal.__version__.split(".")[:3])
+ old_psygnal = psyg_v < (0, 6, 1)
92
93
@guiclass(slots=True)
94
class Foo:
0 commit comments