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

View File

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