forked from openlp/openlp
Update scripts/check_dependencies.py info
This commit is contained in:
parent
3a60ccc9bc
commit
7e4ab873de
@ -76,7 +76,7 @@ MODULES = [
|
||||
'PyQt5.QtOpenGL',
|
||||
'PyQt5.QtSvg',
|
||||
'PyQt5.QtTest',
|
||||
'PyQt5.QtWebEngineWidgets',
|
||||
('PyQt5.QtWebEngineWidgets', '(PyQtWebEngine on PyPI)'),
|
||||
'PyQt5.QtMultimedia',
|
||||
'appdirs',
|
||||
'sqlalchemy',
|
||||
@ -108,9 +108,8 @@ OPTIONAL_MODULES = [
|
||||
('pysword', '(import SWORD bibles)'),
|
||||
('uno', '(LibreOffice/OpenOffice support)'),
|
||||
# development/testing modules
|
||||
('jenkins', '(access jenkins api)'),
|
||||
('pytest', '(testing framework)'),
|
||||
('pytestqt', '(testing framework)'),
|
||||
('pytestqt', '(PyQt testing framework - pytest-qt on PyPI)'),
|
||||
('flake8', '(linter)')
|
||||
]
|
||||
|
||||
@ -239,6 +238,9 @@ def main():
|
||||
verify_python()
|
||||
print('Checking for modules...')
|
||||
for m in MODULES:
|
||||
if isinstance(m, (tuple, list)):
|
||||
check_module(m[0], text=m[1])
|
||||
else:
|
||||
check_module(m)
|
||||
print('Checking for optional modules...')
|
||||
for m in OPTIONAL_MODULES:
|
||||
|
Loading…
Reference in New Issue
Block a user