Fix hcloud requirements.
Avoid installing hcloud on Python 3.9 since it is not supported.
This commit is contained in:
parent
6be4741f72
commit
92b387aa27
2 changed files with 3 additions and 1 deletions
2
changelogs/fragments/ansible-test-hcloud-constraint.yml
Normal file
2
changelogs/fragments/ansible-test-hcloud-constraint.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- ansible-test now limits installation of ``hcloud`` to Python 2.7 and 3.5 - 3.8 since other versions are unsupported
|
|
@ -1 +1 @@
|
|||
hcloud>=1.6.0 ; python_version >= '2.7' # Python 2.6 is not supported (sanity_ok); Only hcloud >= 1.6.0 supports Floating IPs with names
|
||||
hcloud>=1.6.0 ; python_version >= '2.7' and python_version < '3.9' # Python 2.6 is not supported (sanity_ok); Only hcloud >= 1.6.0 supports Floating IPs with names; Python 3.9 and later are not supported
|
||||
|
|
Loading…
Reference in a new issue