mirror of
https://github.com/ansible/awx.git
synced 2026-05-20 07:17:40 -02:30
Avoid errors installing with python 3.11 (#16231)
This commit is contained in:
@@ -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',
|
||||||
|
|||||||
Reference in New Issue
Block a user