0
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2025-07-14 03:31:50 +02:00

build(setup): PyQt6 version is set to 6.7

This commit is contained in:
2024-04-29 11:15:07 +02:00
parent dae8a3409a
commit 0ab8aa3a2f

View File

@ -4,7 +4,7 @@ from setuptools import find_packages, setup
__version__ = "0.50.2"
# Default to PyQt6 if no other Qt binding is installed
QT_DEPENDENCY = "PyQt6<=6.6.3"
QT_DEPENDENCY = "PyQt6>=6.7"
# pylint: disable=unused-import
try:
@ -19,7 +19,6 @@ if __name__ == "__main__":
install_requires=[
"pydantic",
"qtconsole",
"PyQt6-Qt6<=6.6.3",
QT_DEPENDENCY,
"jedi",
"qtpy",
@ -41,7 +40,7 @@ if __name__ == "__main__":
"isort",
],
"pyqt5": ["PyQt5>=5.9"],
"pyqt6": ["PyQt6<=6.6.3"],
"pyqt6": ["PyQt6<=6.7"],
},
version=__version__,
packages=find_packages(),