From 9512cc3f4390c5f4b0522015b212b1c0c856b174 Mon Sep 17 00:00:00 2001 From: Prinz23 Date: Tue, 19 Mar 2024 21:49:40 +0100 Subject: [PATCH] Change allow Python 3.10.14, 3.9.19, and 3.8.19 --- CHANGES.md | 7 ++++++- sickgear.py | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index b2e97a60..b725e3e0 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,9 @@ -### 3.30.14 (2024-03-16 23:20:00 UTC) +### 3.30.15 (2024-03-20 01:55:00 UTC) + +* Change allow Python 3.10.14, 3.9.19, and 3.8.19 + + +### 3.30.14 (2024-03-16 23:20:00 UTC) * Update certifi 2023.07.22 to 2024.02.02 * Fix properly handle an error condition during process tv diff --git a/sickgear.py b/sickgear.py index 7a9e1ded..520ba91c 100755 --- a/sickgear.py +++ b/sickgear.py @@ -36,8 +36,8 @@ warnings.filterwarnings('ignore', module=r'.*ssl_.*', message='.*SSLContext obje warnings.filterwarnings('ignore', module=r'.*zoneinfo.*', message='.*file or directory.*') warnings.filterwarnings('ignore', message='.*deprecated in cryptography.*') -versions = [((3, 8, 2), (3, 8, 18)), - ((3, 9, 0), (3, 9, 2)), ((3, 9, 4), (3, 9, 18)), +versions = [((3, 8, 2), (3, 8, 19)), + ((3, 9, 0), (3, 9, 2)), ((3, 9, 4), (3, 9, 19)), ((3, 10, 0), (3, 12, 2))] # inclusive version ranges if not any(list(map(lambda v: v[0] <= sys.version_info[:3] <= v[1], versions))) and not int(os.environ.get('PYT', 0)): major, minor, micro = sys.version_info[:3]