mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 10:06:40 -04:00
March 27, 2025 by Jani Heikkinen We have released Qt 6.8.3 today. As a patch release, Qt 6.8.3 does not introduce new features but contains more than 300 bug fixes, security updates, and other improvements on top of the Qt 6.8.2 release. See more information about the most important changes and bug fixes from Qt 6.8.3 release note. Qt for Python 6.8.3 has also been released by its usual means along with the Qt 6.8.3 release. Announcement: https://www.qt.io/blog/qt-6.8.3-released Release note: https://code.qt.io/cgit/qt/qtreleasenotes.git/about/qt/6.8.3/release-note.md Security: 7cb6642c-0c5a-11f0-8688-4ccc6adda413
21 lines
1 KiB
Python
21 lines
1 KiB
Python
Fix stage.
|
|
|
|
Compiling '/wrkdirs/usr/ports/devel/pyside6/work-py311/stage/usr/local/lib/python3.11/site-packages/PySide6/QtAsyncio/events.py'...
|
|
*** File "/usr/local/lib/python3.11/site-packages/PySide6/QtAsyncio/events.py", line 601
|
|
print(f"{context["message"]} from task {context["task"]._name},"+
|
|
^^^^^^^
|
|
SyntaxError: f-string: unmatched '['
|
|
|
|
Regressed by: https://code.qt.io/cgit/pyside/pyside-setup.git/commit/?h=6.8.3&id=6aadd4a61d3cc363adeab7589d90e5faecf55f6e
|
|
|
|
--- sources/pyside6/PySide6/QtAsyncio/events.py.orig 2025-03-24 09:13:54 UTC
|
|
+++ sources/pyside6/PySide6/QtAsyncio/events.py
|
|
@@ -598,7 +598,7 @@ class QAsyncioEventLoop(asyncio.BaseEventLoop, QObject
|
|
def default_exception_handler(self, context: dict[str, Any]) -> None:
|
|
# TODO
|
|
if context["message"]:
|
|
- print(f"{context["message"]} from task {context["task"]._name},"+
|
|
+ print(f"{context['message']} from task {context['task']._name},"+
|
|
"read the following traceback:")
|
|
print(context["traceback"])
|
|
|