From 8062c58eba1e1c9942c9894b2b7532facb8e2b14 Mon Sep 17 00:00:00 2001 From: "dries.k" Date: Tue, 27 Aug 2024 16:26:16 +0200 Subject: [PATCH] fix: pyqt import error (?) --- requirements.txt | 4 ++-- setup.py | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index 8e1c323..c8d853e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -requests==2.31.0 -pyqt6==6.7.0 +requests==2.32.3 +pyqt6==6.7.1 diff --git a/setup.py b/setup.py index 5714bea..a5a2500 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ with open("version.txt", "r") as f: # What packages are required for this module to be executed? REQUIRED = [ - 'requests==2.31.0', 'pyqt6==6.5.1' + 'requests==2.32.3', 'pyqt6==6.7.1' ] # What packages are optional? @@ -84,6 +84,8 @@ setup( 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.10' + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12' ] )