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.QtOpenGL',
|
||||||
'PyQt5.QtSvg',
|
'PyQt5.QtSvg',
|
||||||
'PyQt5.QtTest',
|
'PyQt5.QtTest',
|
||||||
'PyQt5.QtWebEngineWidgets',
|
('PyQt5.QtWebEngineWidgets', '(PyQtWebEngine on PyPI)'),
|
||||||
'PyQt5.QtMultimedia',
|
'PyQt5.QtMultimedia',
|
||||||
'appdirs',
|
'appdirs',
|
||||||
'sqlalchemy',
|
'sqlalchemy',
|
||||||
@ -108,9 +108,8 @@ OPTIONAL_MODULES = [
|
|||||||
('pysword', '(import SWORD bibles)'),
|
('pysword', '(import SWORD bibles)'),
|
||||||
('uno', '(LibreOffice/OpenOffice support)'),
|
('uno', '(LibreOffice/OpenOffice support)'),
|
||||||
# development/testing modules
|
# development/testing modules
|
||||||
('jenkins', '(access jenkins api)'),
|
|
||||||
('pytest', '(testing framework)'),
|
('pytest', '(testing framework)'),
|
||||||
('pytestqt', '(testing framework)'),
|
('pytestqt', '(PyQt testing framework - pytest-qt on PyPI)'),
|
||||||
('flake8', '(linter)')
|
('flake8', '(linter)')
|
||||||
]
|
]
|
||||||
|
|
||||||
@ -239,7 +238,10 @@ def main():
|
|||||||
verify_python()
|
verify_python()
|
||||||
print('Checking for modules...')
|
print('Checking for modules...')
|
||||||
for m in MODULES:
|
for m in MODULES:
|
||||||
check_module(m)
|
if isinstance(m, (tuple, list)):
|
||||||
|
check_module(m[0], text=m[1])
|
||||||
|
else:
|
||||||
|
check_module(m)
|
||||||
print('Checking for optional modules...')
|
print('Checking for optional modules...')
|
||||||
for m in OPTIONAL_MODULES:
|
for m in OPTIONAL_MODULES:
|
||||||
check_module(m[0], text=m[1])
|
check_module(m[0], text=m[1])
|
||||||
|
Loading…
Reference in New Issue
Block a user