Skip to content

Commit

Permalink
Bump version to 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGreatCabbage committed Dec 13, 2020
1 parent 19d77ba commit cc5abcb
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions qasync/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"Mark Harviston <[email protected]>, "
"Arve Knudsen <[email protected]>",
)
__version__ = "0.12.0"
__version__ = "0.13.0"
__url__ = "https://github.com/CabbageDevelopment/qasync"
__license__ = "BSD"
__all__ = ["QEventLoop", "QThreadExecutor", "asyncSlot", "asyncClose"]
Expand Down Expand Up @@ -85,16 +85,19 @@
if QtModuleName == "PyQt5":
from PyQt5 import QtWidgets
from PyQt5.QtCore import pyqtSlot as Slot

QApplication = QtWidgets.QApplication

elif QtModuleName == "PySide2":
from PySide2 import QtWidgets
from PySide2.QtCore import Slot

QApplication = QtWidgets.QApplication

elif QtModuleName == "PySide6":
from PySide6 import QtWidgets
from PySide6.QtCore import Slot

QApplication = QtWidgets.QApplication

from ._common import with_logger # noqa
Expand Down

0 comments on commit cc5abcb

Please sign in to comment.