Overview

PyQt6 6.10, released on October 22, 2025, updates the bindings for Qt 6.10.

Main Features

Qt 6.10

PyQt6 6.10 exposes the new Qt 6.10 APIs, including QtWidgets and QtQuick improvements and stability fixes.

python
import sys
from PyQt6.QtWidgets import QApplication, QLabel
from PyQt6.QtCore import Qt

app = QApplication(sys.argv)
label = QLabel('PyQt6 6.10 - Qt 6.10')
label.setAlignment(Qt.AlignmentFlag.AlignCenter)
label.resize(300, 100)
label.show()
sys.exit(app.exec())

Sources