mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-24 05:45:05 +00:00
Merge branch 'feature/ChangeMinPython38' into dev
This commit is contained in:
commit
55da3fe6fc
3 changed files with 3 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
||||||
### 3.29.0 (2023-xx-xx xx:xx:00 UTC)
|
### 3.29.0 (2023-xx-xx xx:xx:00 UTC)
|
||||||
|
|
||||||
|
* Change minimum required Python to version 3.8
|
||||||
* Update Apprise 1.2.1 (3d07004) to 1.3.0 (6458ab0)
|
* Update Apprise 1.2.1 (3d07004) to 1.3.0 (6458ab0)
|
||||||
* Update attr 22.2.0 (a9960de) to 22.2.0 (683d056)
|
* Update attr 22.2.0 (a9960de) to 22.2.0 (683d056)
|
||||||
* Update diskcache 5.4.0 (1cb1425) to 5.6.1 (4d30686)
|
* Update diskcache 5.4.0 (1cb1425) to 5.6.1 (4d30686)
|
||||||
|
|
|
@ -39,7 +39,7 @@ 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, 7, 1), (3, 8, 16)),
|
versions = [((3, 8, 0), (3, 8, 16)),
|
||||||
((3, 9, 0), (3, 9, 2)), ((3, 9, 4), (3, 9, 16)),
|
((3, 9, 0), (3, 9, 2)), ((3, 9, 4), (3, 9, 16)),
|
||||||
((3, 10, 0), (3, 11, 3))] # inclusive version ranges
|
((3, 10, 0), (3, 11, 3))] # 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)):
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
3.7
|
3.8
|
Loading…
Reference in a new issue