diff options
author | Jason E. Hale <jhale@FreeBSD.org> | 2025-06-10 02:14:04 -0400 |
---|---|---|
committer | Jason E. Hale <jhale@FreeBSD.org> | 2025-06-10 03:25:00 -0400 |
commit | 03b02222d63f08742cf723fd8eeee26465ae3e39 (patch) | |
tree | e1c7ebb640453904bf622f88474c716189e76547 /devel/py-qtbuilder/files/patch-pyproject.toml | |
parent | deskutils/foliate: Fix build dependencies. (diff) |
Qt6: Update to 6.9.1
June 03, 2024 by Jani Heikkinen
We have released Qt 6.9.1 today. As a patch release, Qt 6.9.1 does not
introduce new features but contains more than 450 bug fixes, security
updates, and other improvements on top of Qt 6.9.0 release. See more
information about the most important changes and bug fixes from the Qt
6.9.1 release note.
Announcement: https://www.qt.io/blog/qt-6.9.1-released
Release note:
https://code.qt.io/cgit/qt/qtreleasenotes.git/about/qt/6.9.1/release-note.md
We (kde@) skipped shipping Qt 6.9.0 due to unacceptable rendering bugs
in the WebEngine component, but here are the announcements and release
notes from Qt 6.9.0.
Announcement: https://www.qt.io/blog/qt-6.9-released
Release note:
https://code.qt.io/cgit/qt/qtreleasenotes.git/about/qt/6.9.0/release-note.md
PySide6: Update to 6.9.1
PySide6 and its related components have been updated alongside the Qt
release for compatibility. Older versions will not build with Qt 6.9.x.
Announcement: https://www.qt.io/blog/qt-for-python-release-6.9
PyQt6: Update to 6.9.1
As with PySide6, older versions of PyQt6 will not build with Qt 6.9.x.
Support tools like py-sip and py-qtbuilder have also been updated to their
latest versions.
Announcement: https://www.riverbankcomputing.com/news/PyQt_v6.9.0_Released
https://www.riverbankcomputing.com/news/PyQt_v6.9.1_Released
PR: 286051
Exp-run by: antoine
Diffstat (limited to 'devel/py-qtbuilder/files/patch-pyproject.toml')
-rw-r--r-- | devel/py-qtbuilder/files/patch-pyproject.toml | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/devel/py-qtbuilder/files/patch-pyproject.toml b/devel/py-qtbuilder/files/patch-pyproject.toml index b20272d1fd1f..3a745191a899 100644 --- a/devel/py-qtbuilder/files/patch-pyproject.toml +++ b/devel/py-qtbuilder/files/patch-pyproject.toml @@ -3,14 +3,25 @@ with 63.x. [1] https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=270358 ---- pyproject.toml.orig 2024-04-20 11:55:50 UTC +--- pyproject.toml.orig 2025-06-03 14:12:19 UTC +++ pyproject.toml @@ -1,7 +1,7 @@ - # The project configuration for sip. + # The project configuration for PyQt-builder. [build-system] --requires = ["setuptools>=64", "setuptools_scm>=8"] +-requires = ["setuptools>=77", "setuptools_scm>=8"] +requires = ["setuptools>=63", "setuptools_scm>=8"] build-backend = "setuptools.build_meta" [tool.setuptools_scm] +@@ -14,8 +14,8 @@ requires-python = ">=3.8" + urls.homepage = "https://github.com/Python-PyQt/PyQt-builder" + dependencies = ["packaging", "sip >=6.7, <7"] + requires-python = ">=3.8" +-license = "BSD-2-Clause" +-license-files = ["LICENSE"] ++license = {file = "LICENSE"} ++classifiers = ["License :: OSI Approved :: BSD License"] + dynamic = ["version"] + + [[project.authors]] |