diff options
| author | Simo Fält <simo.falt@qt.io> | 2025-02-03 10:29:41 +0200 |
|---|---|---|
| committer | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2025-02-03 09:49:17 +0100 |
| commit | 8af8424776bb39e7c78fa2075c896f48906b601f (patch) | |
| tree | f407226723374dcdc627ff532f0e58bceef53edc | |
| parent | eb80f8e29a06559c5b2d9c5dbded017a3f1e7039 (diff) | |
CI: Use COIN_UNIQUE_JOB_ID variable to detect if build is in COIN
The old variable is not exported anymore by CI.
Pick-to: 5.15 6.2 6.5 6.8 6.8.2
Fixes: PYSIDE-3000
Change-Id: Ide0248348c08bf94dfb5b7fbc2964274e45f7cb7
Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
| -rw-r--r-- | build_scripts/utils.py | 2 | ||||
| -rw-r--r-- | doc/changelogs/changes-6.8.2.1 | 21 |
2 files changed, 22 insertions, 1 deletions
diff --git a/build_scripts/utils.py b/build_scripts/utils.py index ce8b0a246..29f2545d0 100644 --- a/build_scripts/utils.py +++ b/build_scripts/utils.py @@ -1124,7 +1124,7 @@ def copy_qt_metatypes(destination_qt_dir, _vars): def in_coin(): - return os.environ.get('COIN_LAUNCH_PARAMETERS', None) is not None + return os.environ.get('COIN_UNIQUE_JOB_ID', None) is not None def parse_modules(modules: str) -> str: diff --git a/doc/changelogs/changes-6.8.2.1 b/doc/changelogs/changes-6.8.2.1 new file mode 100644 index 000000000..47d2ca371 --- /dev/null +++ b/doc/changelogs/changes-6.8.2.1 @@ -0,0 +1,21 @@ +Qt for Python 6.8.2.1 is a bug-fix release. + +For more details, refer to the online documentation included in this +distribution. The documentation is also available online: + +https://doc.qt.io/qtforpython/ + +Some of the changes listed in this file include issue tracking numbers +corresponding to tasks in the Qt Bug Tracker: + +https://bugreports.qt.io/ + +Each of these identifiers can be entered in the bug tracker to obtain more +information about a particular change. + +**************************************************************************** +* PySide6 * +**************************************************************************** + + - [PYSIDE-3000] A bug in 6.8.2 causing the MSVC runtime libraries no longer + being shipped has been fixed. |
