Skip to content

Commit cc5abcb

Browse files
Bump version to 0.13.0
1 parent 19d77ba commit cc5abcb

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

qasync/__init__.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"Mark Harviston <[email protected]>, "
1515
"Arve Knudsen <[email protected]>",
1616
)
17-
__version__ = "0.12.0"
17+
__version__ = "0.13.0"
1818
__url__ = "https://github.com/CabbageDevelopment/qasync"
1919
__license__ = "BSD"
2020
__all__ = ["QEventLoop", "QThreadExecutor", "asyncSlot", "asyncClose"]
@@ -85,16 +85,19 @@
8585
if QtModuleName == "PyQt5":
8686
from PyQt5 import QtWidgets
8787
from PyQt5.QtCore import pyqtSlot as Slot
88+
8889
QApplication = QtWidgets.QApplication
89-
90+
9091
elif QtModuleName == "PySide2":
9192
from PySide2 import QtWidgets
9293
from PySide2.QtCore import Slot
94+
9395
QApplication = QtWidgets.QApplication
94-
96+
9597
elif QtModuleName == "PySide6":
9698
from PySide6 import QtWidgets
9799
from PySide6.QtCore import Slot
100+
98101
QApplication = QtWidgets.QApplication
99102

100103
from ._common import with_logger # noqa

0 commit comments

Comments
 (0)