Version 0.8.0
What's Changed
- feature: implement qtpy by @danielhrisca in #28
What's New
You can now use QtPy as general interface to work with all kind of python Qt bindings. Have a look into the README.md to findout how to use it.
During the install you can pass the Qt binding framework of your choice
pip3 install "pyqtlet2[PyQt5]"
# or
pip3 install "pyqtlet2[PySide6]"
After the install you need to specify the framework to use by an environment variable.
import os
os.environ['QT_API'] = 'pyqt5'
from qtpy import QtGui
Full Changelog: 0.7.0...0.8.0