From 251b5053e4a1863ad52ba90770e97b99f16ad2d8 Mon Sep 17 00:00:00 2001 From: Lukas Hennies Date: Sun, 9 Feb 2025 12:58:15 +0100 Subject: [PATCH 1/2] chore: fix windows requirements for python >=3.10 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index b32109a2..98c9b6d6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ wxPython>=4.0,<4.2.0 ; platform_system=="Linux" # See https://github.com/wxWidgets/Phoenix/issues/2225 -wxPython==4.2.0 ; platform_system!="Linux" +wxPython>=4.2.0 ; platform_system!="Linux" pyserial requests pywin32; platform_system=="Windows" From 8538f277ddfff3eeff27eff49c102471a8834155 Mon Sep 17 00:00:00 2001 From: Lukas Hennies Date: Sun, 9 Feb 2025 12:58:42 +0100 Subject: [PATCH 2/2] chore: remove last use of future --- chirp/drivers/uvb5.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/chirp/drivers/uvb5.py b/chirp/drivers/uvb5.py index b8277a21..bd89e1a7 100644 --- a/chirp/drivers/uvb5.py +++ b/chirp/drivers/uvb5.py @@ -13,8 +13,6 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -from __future__ import division - import struct import logging from chirp import chirp_common, directory, bitwise, memmap, errors, util