From f2836045f9efb854fa3aa8071b087b7bc6359526 Mon Sep 17 00:00:00 2001 From: Jerome Kieffer Date: Thu, 12 Sep 2024 11:15:43 +0200 Subject: [PATCH] install optional dependencies to run tests --- pyproject.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9902afce..da2e54c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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/' @@ -77,3 +78,6 @@ hdf2neggia = 'fabio.app.hdf2neggia:main' [project.gui-scripts] fabio_viewer = 'fabio.app.viewer:main' + +[tool.cibuildwheel] +test-requires = "pyqt5", "matplotlib"]