diff options
Diffstat (limited to 'ansible_collections/community/general/tests/unit/requirements.txt')
-rw-r--r-- | ansible_collections/community/general/tests/unit/requirements.txt | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/ansible_collections/community/general/tests/unit/requirements.txt b/ansible_collections/community/general/tests/unit/requirements.txt index 0aa7c1fc9..218fe4567 100644 --- a/ansible_collections/community/general/tests/unit/requirements.txt +++ b/ansible_collections/community/general/tests/unit/requirements.txt @@ -6,10 +6,12 @@ unittest2 ; python_version < '2.7' importlib ; python_version < '2.7' # requirement for the memcached cache plugin -python-memcached +python-memcached < 1.60 ; python_version < '3.6' +python-memcached ; python_version >= '3.6' # requirement for the redis cache plugin redis +async-timeout ; python_version == '3.11' # requirement for the linode module linode-python # APIv3 @@ -43,4 +45,12 @@ dataclasses ; python_version == '3.6' elastic-apm ; python_version >= '3.6' # requirements for scaleway modules -passlib[argon2]
\ No newline at end of file +passlib[argon2] + +# requirements for the proxmox modules +proxmoxer < 2.0.0 ; python_version >= '2.7' and python_version <= '3.6' +proxmoxer ; python_version > '3.6' + +#requirements for nomad_token modules +python-nomad < 2.0.0 ; python_version <= '3.6' +python-nomad >= 2.0.0 ; python_version >= '3.7' |