Skip to content

Commit

Permalink
install optional dependencies to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kif authored Sep 12, 2024
1 parent f063e85 commit f283604
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,9 @@ requires = [
'tomli>=1.0.0'
]
[project.optional-dependencies]
gui = [ "PyQt5", "matplotlib" ]
all = ["PyQt5", "matplotlib"]
gui = [ "pyqt5", "matplotlib" ]
all = ["pyqt5", "matplotlib"]

[project.urls]
homepage = 'http://www.silx.org'
documentation = 'http://www.silx.org/doc/fabio/latest/'
Expand All @@ -77,3 +78,6 @@ hdf2neggia = 'fabio.app.hdf2neggia:main'

[project.gui-scripts]
fabio_viewer = 'fabio.app.viewer:main'

[tool.cibuildwheel]
test-requires = "pyqt5", "matplotlib"]

0 comments on commit f283604

Please sign in to comment.