diff options
author | Daniel Gonçalves <dangoncalves@users.noreply.github.com> | 2024-02-14 21:12:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-14 21:12:51 +0100 |
commit | a14cc8199d9a9a93d89693b50f0a689ee0fcf298 (patch) | |
tree | 579434f6f4bb9d2d4227d223c0984992dd2cb431 /awxkit | |
parent | Support websocket per-endpoint auth (diff) | |
download | awx-a14cc8199d9a9a93d89693b50f0a689ee0fcf298.tar.xz awx-a14cc8199d9a9a93d89693b50f0a689ee0fcf298.zip |
Add python 3.12 dependency (#14869)
Signed-off-by: Daniel Gonçalves <daniel.gonc@lves.fr>
Diffstat (limited to 'awxkit')
-rw-r--r-- | awxkit/setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/awxkit/setup.py b/awxkit/setup.py index cca55490d6..4c84ff6c84 100644 --- a/awxkit/setup.py +++ b/awxkit/setup.py @@ -90,6 +90,7 @@ setup( install_requires=[ 'PyYAML', 'requests', + 'setuptools', ], python_requires=">=3.8", extras_require={'formatting': ['jq'], 'websockets': ['websocket-client==0.57.0'], 'crypto': ['cryptography']}, |