Browse Source

Change allow Python 3.8.3.

tags/release_0.21.33^2
Prinz23 5 years ago
committed by JackDandy
parent
commit
c9d0ff5227
  1. 7
      CHANGES.md
  2. 2
      sickgear.py

7
CHANGES.md

@ -1,4 +1,9 @@
### 0.21.32 (2020-05-14 15:00:00 UTC)
### 0.21.33 (2020-05-15 08:25:00 UTC)
* Change allow Python 3.8.3
### 0.21.32 (2020-05-14 15:00:00 UTC)
* Change improve Cloudflare connectivity

2
sickgear.py

@ -40,7 +40,7 @@ warnings.filterwarnings('ignore', module=r'.*fuzzywuzzy.*')
warnings.filterwarnings('ignore', module=r'.*ssl_.*', message='.*SSLContext object.*')
warnings.filterwarnings('ignore', module=r'.*zoneinfo.*', message='.*file or directory.*')
versions = [((2, 7, 9), (2, 7, 18)), ((3, 7, 1), (3, 8, 2))] # inclusive version ranges
versions = [((2, 7, 9), (2, 7, 18)), ((3, 7, 1), (3, 8, 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)):
print('Python %s.%s.%s detected.' % sys.version_info[:3])
print('Sorry, SickGear requires a Python version %s' % ', '.join(map(

Loading…
Cancel
Save