Change allow Python 3.10.14, 3.9.19, and 3.8.19

This commit is contained in:
Prinz23 2024-03-19 21:49:40 +01:00 committed by JackDandy
parent e3cd330884
commit 9512cc3f43
2 changed files with 8 additions and 3 deletions

View file

@ -1,4 +1,9 @@
### 3.30.14 (2024-03-16 23:20:00 UTC)
### 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
* Fix properly handle an error condition during process tv

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, 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]