Change allow Python 3.8.17, 3.9.17, 3.10.12

This commit is contained in:
JackDandy 2023-06-07 13:46:29 +01:00
parent 62659e74a6
commit b17ea1d319
2 changed files with 8 additions and 3 deletions

View file

@ -1,4 +1,9 @@
### 3.29.3 (2023-05-31 13:30:00 UTC)
### 3.29.4 (2023-06-07 13:45:00 UTC)
* Change allow Python 3.8.17, 3.9.17, 3.10.12
### 3.29.3 (2023-05-31 13:30:00 UTC)
* Update UnRar x64 for Windows 6.21 to 6.22
* Change allow Python 3.11.4

View file

@ -36,8 +36,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 = [((3, 8, 2), (3, 8, 16)),
((3, 9, 0), (3, 9, 2)), ((3, 9, 4), (3, 9, 16)),
versions = [((3, 8, 2), (3, 8, 17)),
((3, 9, 0), (3, 9, 2)), ((3, 9, 4), (3, 9, 17)),
((3, 10, 0), (3, 11, 4))] # 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]