aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorCristian Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2020-06-08 09:48:27 +0200
committerCristian Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2020-06-08 09:55:22 +0200
commit48c5bf6f4b752b12e2cda4fb74d9b554f6e69258 (patch)
tree1b160b5c14396156be1fde30896b3a110fd26e3a /tools
parentfae54dc7bf5eb091dd7409000caa355d0d79b39e (diff)
Update missing_binding script
Adding also a requirements.txt file to install all the dependencies to compare PySide2 with PyQt5. Change-Id: I655264b17f3dd25f3861eab95ea87950564d4377 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'tools')
-rw-r--r--tools/missing_bindings-requirements.txt7
-rw-r--r--tools/missing_bindings.py7
2 files changed, 11 insertions, 3 deletions
diff --git a/tools/missing_bindings-requirements.txt b/tools/missing_bindings-requirements.txt
new file mode 100644
index 000000000..4ddb60aa8
--- /dev/null
+++ b/tools/missing_bindings-requirements.txt
@@ -0,0 +1,7 @@
+pyside2
+pyqt5
+beautifulsoup4
+pyqt3d
+pyqtchart
+pyqtdatavisualization
+pyqtwebengine
diff --git a/tools/missing_bindings.py b/tools/missing_bindings.py
index cfc885c6c..33a296832 100644
--- a/tools/missing_bindings.py
+++ b/tools/missing_bindings.py
@@ -227,7 +227,8 @@ qt_documentation_website_prefixes['5.11'] = 'http://doc.qt.io/qt-5.11/'
qt_documentation_website_prefixes['5.11'] = 'http://doc.qt.io/qt-5.11/'
qt_documentation_website_prefixes['5.12'] = 'http://doc.qt.io/qt-5.12/'
qt_documentation_website_prefixes['5.13'] = 'http://doc.qt.io/qt-5.13/'
-qt_documentation_website_prefixes['5.14'] = 'http://doc.qt.io/qt-5/'
+qt_documentation_website_prefixes['5.14'] = 'http://doc.qt.io/qt-5.14/'
+qt_documentation_website_prefixes['5.15'] = 'http://doc.qt.io/qt-5/'
qt_documentation_website_prefixes['dev'] = 'http://doc-snapshots.qt.io/qt5-dev/'
@@ -250,8 +251,8 @@ parser.add_argument("module",
help="the Qt module for which to get the missing types")
parser.add_argument("--qt-version",
"-v",
- default='5.12',
- choices=['5.6', '5.9', '5.11', '5.12', '5.13', '5.14', 'dev'],
+ default='5.15',
+ choices=['5.6', '5.9', '5.11', '5.12', '5.13', '5.14', '5.15', 'dev'],
type=str,
dest='version',
help="the Qt version to use to check for types")