Skip to content

Commit

Permalink
build: restrict qt a bit more
Browse files Browse the repository at this point in the history
  • Loading branch information
tlambert03 committed Jan 18, 2025
1 parent 05ab255 commit d9d6fca
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,10 @@ dependencies = [
[project.optional-dependencies]
# Supported GUI frontends
jupyter = ["ipywidgets >=8", "jupyter", "jupyter_rfb >=0.3.3", "glfw"]
qtextras = ["qtpy >=2", "superqt[iconify]>=0.7.1"]
pyqt = ["pyqt6", "ndv[qtextras]"]
pyside = ["pyside6<6.8", "ndv[qtextras]"]
pyqt = ["pyqt6 >=6.4,!=6.6", "qtpy >=2", "superqt[iconify] >=0.7.1"]
# for pyside, superqt has the most issues, so we defer to
# superqt's pyside6 restrictions, but minimally require pyside6>6.4
pyside = ["superqt[pyside6] >=0.7.1", "pyside6 >=6.4", "qtpy >=2"]
wxpython = ["wxpython"]

# Supported Canavs backends
Expand Down

0 comments on commit d9d6fca

Please sign in to comment.