Overview
PySide6 6.9, released on April 2, 2025, provides the Python binding for Qt 6.9 with new modules and performance improvements.
Main Features
Qt 6.9 binding
PySide6 6.9 provides access to all Qt 6.9 features, including QtQuick improvements and graphics rendering enhancements.
python
import sys
from PySide6.QtWidgets import QApplication, QMainWindow
from PySide6.QtCore import qVersion
app = QApplication(sys.argv)
print(f'Qt version: {qVersion()}') # 6.9.x
window = QMainWindow()
window.setWindowTitle('PySide6 6.9')
window.show()
sys.exit(app.exec())
QtQuick improvements
The QtQuick module benefits from rendering optimizations and better support for smooth animations.
python
from PySide6.QtQuick import QQuickView
from PySide6.QtWidgets import QApplication
from PySide6.QtCore import QUrl
import sys
app = QApplication(sys.argv)
view = QQuickView()
view.setSource(QUrl.fromLocalFile('main.qml'))
view.show()
sys.exit(app.exec())
