Avoid errors installing with python 3.11 (#16231)

This commit is contained in:
Alan Rominger 2026-01-20 10:24:41 -05:00 committed by GitHub
parent 80bb0c9862
commit 8c5cf49c23
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -92,7 +92,7 @@ setup(
'requests',
'setuptools',
],
python_requires=">=3.12",
python_requires=">=3.11",
extras_require={'formatting': ['jq'], 'websockets': ['websocket-client==0.57.0'], 'crypto': ['cryptography']},
license='Apache 2.0',
classifiers=[
@ -104,6 +104,7 @@ setup(
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: System :: Software Distribution',
'Topic :: System :: Systems Administration',