diff options
| author | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2020-11-02 16:11:52 +0100 |
|---|---|---|
| committer | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2020-11-02 16:12:04 +0000 |
| commit | 25180730194bec25f915f32ab846ea583fb1493f (patch) | |
| tree | 9a73e0336ecf21e085d99d6a651c5547b9eb99f8 /tools/missing_bindings.py | |
| parent | 6e3e7b9ca0548430aaa5e2555d6e02c64625fa3f (diff) | |
Rename PySide2 to PySide6
Adapt CMake files, build scripts, tests and examples.
Task-number: PYSIDE-904
Change-Id: I845f7b006e9ad274fed5444ec4c1f9dbe176ff88
Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'tools/missing_bindings.py')
| -rw-r--r-- | tools/missing_bindings.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/missing_bindings.py b/tools/missing_bindings.py index 33a296832..8e5960029 100644 --- a/tools/missing_bindings.py +++ b/tools/missing_bindings.py @@ -38,14 +38,14 @@ ############################################################################# # This script is used to generate a summary of missing types / classes -# which are present in C++ Qt5, but are missing in PySide2. +# which are present in C++ Qt5, but are missing in PySide6. # # Required packages: bs4 # Installed via: pip install bs4 # # The script uses beautiful soup 4 to parse out the class names from # the online Qt documentation. It then tries to import the types from -# PySide2. +# PySide6. # # Example invocation of script: # python missing_bindings.py --qt-version 5.9 -w all @@ -272,7 +272,7 @@ if hasattr(args, "module") and args.module != 'all': modules_to_test.clear() modules_to_test[args.module] = saved_value -pyside_package_name = "PySide2" +pyside_package_name = "PySide6" pyqt_package_name = "PyQt5" total_missing_types_count = 0 @@ -315,13 +315,13 @@ def log(*pargs, **kw): print(computed_str, file=wiki_file) -log('PySide2 bindings for Qt {}'.format(args.version), style='heading1') +log('PySide6 bindings for Qt {}'.format(args.version), style='heading1') log("""Using Qt version {} documentation to find public API Qt types and test -if the types are present in the PySide2 package.""".format(args.version)) +if the types are present in the PySide6 package.""".format(args.version)) log("""Results are usually stored at -https://wiki.qt.io/PySide2_Missing_Bindings +https://wiki.qt.io/PySide6_Missing_Bindings so consider taking the contents of the generated missing_bindings_for_wiki_qt_io.txt file and updating the linked wiki page.""", style='end') |
