mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-18 08:43:37 +00:00
Merge branch 'hotfix/3.30.15'
This commit is contained in:
commit
2c2e6bb0f9
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
|
* Update certifi 2023.07.22 to 2024.02.02
|
||||||
* Fix properly handle an error condition during process tv
|
* 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', module=r'.*zoneinfo.*', message='.*file or directory.*')
|
||||||
warnings.filterwarnings('ignore', message='.*deprecated in cryptography.*')
|
warnings.filterwarnings('ignore', message='.*deprecated in cryptography.*')
|
||||||
|
|
||||||
versions = [((3, 8, 2), (3, 8, 18)),
|
versions = [((3, 8, 2), (3, 8, 19)),
|
||||||
((3, 9, 0), (3, 9, 2)), ((3, 9, 4), (3, 9, 18)),
|
((3, 9, 0), (3, 9, 2)), ((3, 9, 4), (3, 9, 19)),
|
||||||
((3, 10, 0), (3, 12, 2))] # inclusive version ranges
|
((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)):
|
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]
|
major, minor, micro = sys.version_info[:3]
|
||||||
|
|
Loading…
Reference in a new issue