fix: pyqt import error (?)

This commit is contained in:
dries.k
2024-08-27 16:26:16 +02:00
parent 4a1f1804c1
commit 8062c58eba
2 changed files with 6 additions and 4 deletions

View File

@@ -1,2 +1,2 @@
requests==2.31.0 requests==2.32.3
pyqt6==6.7.0 pyqt6==6.7.1

View File

@@ -15,7 +15,7 @@ with open("version.txt", "r") as f:
# What packages are required for this module to be executed? # What packages are required for this module to be executed?
REQUIRED = [ REQUIRED = [
'requests==2.31.0', 'pyqt6==6.5.1' 'requests==2.32.3', 'pyqt6==6.7.1'
] ]
# What packages are optional? # What packages are optional?
@@ -84,6 +84,8 @@ setup(
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python', 'Programming Language :: Python',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10' 'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
] ]
) )