diff --git a/CHANGES.md b/CHANGES.md index 59e4eca..b1274d5 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -16,6 +16,13 @@ * Change don't remember folder used during auto processing +### 0.23.2 (2020-11-21 18:40:00 UTC) + +* Change allow Python 3.8.7 +* Change suppress py27 startup cryptography deprecation warning +* Fix filter out history items that don't qualify for status snatched/good + + ### 0.23.1 (2020-11-16 23:00:00 UTC) * Fix image failure for a show that is force updated, removed, then readded diff --git a/gui/slick/interfaces/default/inc_top.tmpl b/gui/slick/interfaces/default/inc_top.tmpl index 44ef7d6..b66ec9e 100644 --- a/gui/slick/interfaces/default/inc_top.tmpl +++ b/gui/slick/interfaces/default/inc_top.tmpl @@ -203,22 +203,28 @@ #end if diff --git a/sickgear.py b/sickgear.py index 205327b..d466257 100755 --- a/sickgear.py +++ b/sickgear.py @@ -38,8 +38,9 @@ warnings.filterwarnings('ignore', module=r'.*connectionpool.*', message='.*certi 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.*') +warnings.filterwarnings('ignore', message='.*deprecated in cryptography.*') -versions = [((2, 7, 9), (2, 7, 18)), ((3, 7, 1), (3, 8, 6)), ((3, 9, 0), (3, 9, 0))] # inclusive version ranges +versions = [((2, 7, 9), (2, 7, 18)), ((3, 7, 1), (3, 8, 7)), ((3, 9, 0), (3, 9, 0))] # 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(