Parameters: update py36 warning, add py311 notice

This commit is contained in:
umarcor
2022-01-09 20:39:36 +01:00
parent 83cd572694
commit 997d548e60

View File

@@ -83,7 +83,9 @@ jobs:
systems = '${{ inputs.system_list }}'.split(' ')
versions = '${{ inputs.python_version_list }}'.split(' ')
if '3.6' in versions:
print('WARNING: support for Python 3.6 ended in 2021.12.23')
print("::warning title=Deprecated::Support for Python 3.6 ended in 2021.12.23.")
if '3.11' in versions:
print(f"::notice title=Experimental::Python 3.11 (3.11.0-alpha3) is a pre-release.")
data = {
'python': {
'3.6': { 'icon': '⚫', 'until': '2021.12.23' },