mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-18 08:43:37 +00:00
Change allow Python 3.10.14, 3.9.19, and 3.8.19
This commit is contained in:
parent
e3cd330884
commit
9512cc3f43
2 changed files with 8 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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]
|
||||
|
|
Loading…
Reference in a new issue