Skip to content

Commit

Permalink
Merge branch 'main' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
JackDandy committed Mar 20, 2024
2 parents b45689c + 2c2e6bb commit d907fe5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@
* Fix media process being ignored by Plex extras


### 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
Expand Down
4 changes: 2 additions & 2 deletions sickgear.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
warnings.filterwarnings('ignore', module=r'.*zoneinfo.*', message='.*file or directory.*')
warnings.filterwarnings('ignore', message='.*deprecated in cryptography.*')

versions = [((3, 8, 2), (3, 8, 18)),
((3, 9, 0), (3, 9, 2)), ((3, 9, 4), (3, 9, 18)),
versions = [((3, 8, 2), (3, 8, 19)),
((3, 9, 0), (3, 9, 2)), ((3, 9, 4), (3, 9, 19)),
((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)):
major, minor, micro = sys.version_info[:3]
Expand Down

0 comments on commit d907fe5

Please sign in to comment.