From 8db35dfeaaf3097b0ccd8bf2771998de6026845c Mon Sep 17 00:00:00 2001 From: Hannes Date: Mon, 26 May 2025 15:35:51 +0200 Subject: [PATCH] add info on gitlab ci, fix typo --- Plugin-migration-to-be-compatible-with-Qt5-and-Qt6.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Plugin-migration-to-be-compatible-with-Qt5-and-Qt6.md b/Plugin-migration-to-be-compatible-with-Qt5-and-Qt6.md index 8d8596a..bf5f977 100644 --- a/Plugin-migration-to-be-compatible-with-Qt5-and-Qt6.md +++ b/Plugin-migration-to-be-compatible-with-Qt5-and-Qt6.md @@ -12,7 +12,7 @@ It's possible to make a plugin for both Qt5 and Qt6. pip install astpretty tokenize-rt ``` -1. Install additionnal system dependencies. Typically on Debian based-images: +1. Install additional system dependencies. Typically on Debian based-images: ```sh sudo apt install python3-pyqt6 python3-pyqt6.qtsvg python3-pyqt6.qsci @@ -39,6 +39,8 @@ The Docker image can also be used in a CI context to ensure compatibility along #### GitLab CI +Edit `"{plugin_folder_path_within_git_repository}"` below to point to your plugin folder relative to your Git repository root. + ```yaml stages: - 🐍 lint @@ -71,6 +73,8 @@ lint:qt6: expire_in: 3 days ``` +`pyqt6_checker.log` files are available as job artifacts after the pipeline has run. + ## Official C++ documentation - [Removed Modules in Qt 6.0](https://doc.qt.io/qt-6/whatsnew60.html#removed-modules-in-qt-6-0)