Overview

PySide6 6.7, released on September 11, 2024, updates the official Qt for Python binding to Qt 6.7 and improves async support.

Main Features

Qt 6.7 and async

PySide6 6.7 integrates Qt 6.7 and improves compatibility with asyncio event loops for asynchronous applications.

python
import sys
from PySide6.QtWidgets import QApplication, QMainWindow
from PySide6.QtCore import __version__ as qt_version

app = QApplication(sys.argv)
print(f'Qt version: {qt_version}')

window = QMainWindow()
window.setWindowTitle('PySide6 6.7')
window.show()
sys.exit(app.exec())

Sources