Skip to content

Commit

Permalink
Merge branch 'hotfix/3.30.18'
Browse files Browse the repository at this point in the history
  • Loading branch information
JackDandy committed Apr 24, 2024
2 parents 87c4cdf + 0bf45be commit f0448a9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
### 3.30.17 (2024-04-01 17:55:00 UTC)
### 3.30.18 (2024-04-24 23:55:00 UTC)

* Change allow Python 3.12.3


### 3.30.17 (2024-04-01 17:55:00 UTC)

* Change restrict lxml to < 5.2.0 on non-windows OS's

Expand Down
2 changes: 1 addition & 1 deletion sickgear.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

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
((3, 10, 0), (3, 12, 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)):
major, minor, micro = sys.version_info[:3]
print('Python %s.%s.%s detected.' % (major, minor, micro))
Expand Down

0 comments on commit f0448a9

Please sign in to comment.