{lang,vis}[GCCcore/14.3.0] PyQt6 v6.9.1, PyQt-builder v1.19.0#24757
{lang,vis}[GCCcore/14.3.0] PyQt6 v6.9.1, PyQt-builder v1.19.0#24757boegel merged 5 commits intoeasybuilders:developfrom
Conversation
….0-GCCcore-14.3.0.eb
Updated software
|
|
Test report by @Micket |
|
Test report by @jfgrimm |
|
Maybe needs a newer SIP |
|
Test report by @Micket |
|
nope wasn't SIP... |
|
Test report by @Thyre |
|
@Micket: Comparing this this is the only one using a standard |
|
Looking at the changelog between 6.10.0 and the latest develop: https://www.riverbankcomputing.com/static/Downloads/PyQt6-WebEngine/ChangeLog-6.10.1.dev2510252014 has one change with log of "Fixed a regression that caused builds to fail when using Qt v6.8 or v6.9." From https://www.riverbankcomputing.com/pypi/simple/pyqt6-webengine/ via https://www.riverbankcomputing.com/software/pyqtwebengine/download we can get the latest code and get this diff: diff -rau pyqt6_webengine-6.10.0/ChangeLog pyqt6_webengine-6.10.1.dev2510252014/ChangeLog
--- pyqt6_webengine-6.10.0/ChangeLog 2025-10-16 11:34:51.202807400 +0100
+++ pyqt6_webengine-6.10.1.dev2510252014/ChangeLog 2025-10-26 01:07:11.511231400 +0100
@@ -1,3 +1,11 @@
+commit d76a2a7f9c3215b33dbd41d4dacb78eb182900fe
+Author: Phil Thompson <[email protected]>
+Date: Sat Oct 25 20:14:23 2025 +0100
+
+ Bug fixes
+
+ Fixed a regression that caused builds to fail when using Qt v6.8 or v6.9.
+
commit 14b3e276ae013b46b2a9de0c6b89ea825eed9c05
Author: Phil Thompson <[email protected]>
Date: Thu Oct 16 11:03:55 2025 +0100
diff -rau pyqt6_webengine-6.10.0/PKG-INFO pyqt6_webengine-6.10.1.dev2510252014/PKG-INFO
--- pyqt6_webengine-6.10.0/PKG-INFO 2025-10-16 11:34:51.420435700 +0100
+++ pyqt6_webengine-6.10.1.dev2510252014/PKG-INFO 2025-10-26 01:07:12.488023800 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 2.4
Name: PyQt6-WebEngine
-Version: 6.10.0
+Version: 6.10.1.dev2510252014
Requires-Python: >=3.9
Summary: Python bindings for the Qt WebEngine framework
Description-Content-Type: text/markdown
diff -rau pyqt6_webengine-6.10.0/pyproject.toml pyqt6_webengine-6.10.1.dev2510252014/pyproject.toml
--- pyqt6_webengine-6.10.0/pyproject.toml 2025-10-16 11:34:51.203694300 +0100
+++ pyqt6_webengine-6.10.1.dev2510252014/pyproject.toml 2025-10-26 01:07:11.513793200 +0100
@@ -5,7 +5,7 @@
[project]
name = "PyQt6-WebEngine"
-version = "6.10.0"
+version = "6.10.1.dev2510252014"
description = "Python bindings for the Qt WebEngine framework"
readme = "README.md"
urls.homepage = "https://www.riverbankcomputing.com/software/pyqtwebengine/"
diff -rau pyqt6_webengine-6.10.0/sip/QtWebEngineCore/QtWebEngineCoremod.sip pyqt6_webengine-6.10.1.dev2510252014/sip/QtWebEngineCore/QtWebEngineCoremod.sip
--- pyqt6_webengine-6.10.0/sip/QtWebEngineCore/QtWebEngineCoremod.sip 2025-10-16 11:34:51.307295000 +0100
+++ pyqt6_webengine-6.10.1.dev2510252014/sip/QtWebEngineCore/QtWebEngineCoremod.sip 2025-10-26 01:07:11.812224900 +0100
@@ -54,8 +54,8 @@
const char *PYQT_WEBENGINE_VERSION_STR;
%ModuleCode
-static int PYQT_WEBENGINE_VERSION = 0x060a00;
-static const char *PYQT_WEBENGINE_VERSION_STR = "6.10.0";
+static int PYQT_WEBENGINE_VERSION = 0x060a01;
+static const char *PYQT_WEBENGINE_VERSION_STR = "6.10.1.dev2510252014";
%End
%Include qtwebenginecoreglobal.sip
diff -rau pyqt6_webengine-6.10.0/sip/QtWebEngineCore/qwebenginesettings.sip pyqt6_webengine-6.10.1.dev2510252014/sip/QtWebEngineCore/qwebenginesettings.sip
--- pyqt6_webengine-6.10.0/sip/QtWebEngineCore/qwebenginesettings.sip 2025-10-16 11:34:51.314369000 +0100
+++ pyqt6_webengine-6.10.1.dev2510252014/sip/QtWebEngineCore/qwebenginesettings.sip 2025-10-26 01:07:11.833061000 +0100
@@ -124,7 +124,7 @@
QWebEngineSettings::UnknownUrlSchemePolicy unknownUrlSchemePolicy() const;
void setUnknownUrlSchemePolicy(QWebEngineSettings::UnknownUrlSchemePolicy policy);
void resetUnknownUrlSchemePolicy();
-%If (QtWebEngine_6_10_0 -)
+%If (QtWebEngine_6_8_0 -)
typedef unsigned char uint8_t /PyInt/;
%End
%If (QtWebEngine_6_8_0 -) |
|
Yeah.. the changes to the last file match what I saw. |
|
I think this error is actually due to missing cstdint include. This makes it unable to parse the enum properly, this all errors stem from this. I made my own patch. But, there are more errors that follow. but, i'm thinking it's best to downgrade to PyQt 6.9 maybe? |
|
@boegelbot please test @ jsc-zen3 |
|
@Micket: Request for testing this PR well received on jsczen3l1.int.jsc-zen3.fz-juelich.de PR test command '
Test results coming soon (I hope)... Details- notification for comment with ID 3628986592 processed Message to humans: this is just bookkeeping information for me, |
|
Test report by @Micket |
|
Test report by @Thyre |
|
@boegelbot please test @ jsc-zen3 |
|
@Thyre: Request for testing this PR well received on jsczen3l1.int.jsc-zen3.fz-juelich.de PR test command '
Test results coming soon (I hope)... Details- notification for comment with ID 3631389139 processed Message to humans: this is just bookkeeping information for me, |
|
Test report by @boegelbot |
|
Test report by @boegel |
|
Going in, thanks @Micket! |
(created using
eb --new-pr)