Skip to content

Commit 677f385

Browse files
author
David Miguel Susano Pinto
committed
maint: fix optional dependency on PyQt.
In 6e9c67f the microscope.gui module changed to be dependent on PyQt. This new dependency was mentioned on the NEWS file but by mistake was listed as PySide2 in the actual list of dependencies (setup.py at the time). The reason for the mistake is probably that PyQt is a wrapper around PySide* or PyQt* whichever is installed, and the initial version of microscope.gui used PySide2 directly.
1 parent 4489b56 commit 677f385

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ dependencies = [
3232
]
3333

3434
[project.optional-dependencies]
35-
GUI = ["PySide2"]
35+
GUI = ["PyQt"]
3636

3737
[project.scripts]
3838
device-server = "microscope.device_server:_setuptools_entry_point"

0 commit comments

Comments
 (0)