Browse Source

Merge branch 'hotfix/0.24.6'

tags/release_0.24.6^0 release_0.24.6
JackDandy 4 years ago
parent
commit
b9d22a0e54
  1. 7
      CHANGES.md
  2. 4
      sickgear.py

7
CHANGES.md

@ -1,4 +1,9 @@
### 0.24.5 (2021-06-26 16:45:00 UTC)
### 0.24.6 (2021-06-28 23:59:00 UTC)
* Change allow Python 3.7.11, 3.8.11, and 3.9.6
### 0.24.5 (2021-06-26 16:45:00 UTC)
* Fix restart after "Update Now" is clicked on UI, must manually restart from 0.24.0 until this release

4
sickgear.py

@ -39,8 +39,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 = [((2, 7, 9), (2, 7, 18)), ((3, 9, 0), (3, 9, 2)),
((3, 7, 1), (3, 8, 10)), ((3, 9, 4), (3, 9, 5))] # inclusive version ranges
versions = [((2, 7, 9), (2, 7, 18)), ((3, 7, 1), (3, 8, 11)),
((3, 9, 0), (3, 9, 2)), ((3, 9, 4), (3, 9, 6))] # 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)):
print('Python %s.%s.%s detected.' % sys.version_info[:3])
print('Sorry, SickGear requires a Python version %s' % ', '.join(map(

Loading…
Cancel
Save