Skip to content

Version 0.8.0

Compare
Choose a tag to compare
@JaWeilBaum JaWeilBaum released this 06 Mar 21:53
· 10 commits to master since this release
0.8.0
9c1482f

What's Changed

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