Compare commits
No commits in common. "0dd5032df971421a0262c4554c24b62d325d34ec" and "22467fd1f42ed63c4efba85d413a0aad3665ae6a" have entirely different histories.
0dd5032df9
...
22467fd1f4
@ -7,10 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
## [1.3.0] - 2021-09-02
|
|
||||||
|
|
||||||
- See [here](https://github.com/ansible-community/molecule-hetznercloud/releases/tag/1.3.0)
|
|
||||||
|
|
||||||
## [1.2.1] - 2021-06-02
|
## [1.2.1] - 2021-06-02
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
import os
|
import os
|
||||||
|
|
||||||
from ansible_compat.ports import cache
|
|
||||||
from molecule import logger, util
|
from molecule import logger, util
|
||||||
from molecule.api import Driver
|
from molecule.api import Driver
|
||||||
from molecule.util import sysexit_with_message
|
from molecule.util import lru_cache, sysexit_with_message
|
||||||
|
|
||||||
log = logger.get_logger(__name__)
|
log = logger.get_logger(__name__)
|
||||||
|
|
||||||
@ -76,7 +75,7 @@ class HetznerCloud(Driver):
|
|||||||
item for item in instance_config_dict if item["instance"] == instance_name
|
item for item in instance_config_dict if item["instance"] == instance_name
|
||||||
)
|
)
|
||||||
|
|
||||||
@cache
|
@lru_cache()
|
||||||
def sanity_checks(self):
|
def sanity_checks(self):
|
||||||
"""Hetzner Cloud driver sanity checks."""
|
"""Hetzner Cloud driver sanity checks."""
|
||||||
|
|
||||||
|
@ -55,7 +55,6 @@ setup_requires =
|
|||||||
setuptools_scm
|
setuptools_scm
|
||||||
setuptools_scm_git_archive
|
setuptools_scm_git_archive
|
||||||
install_requires =
|
install_requires =
|
||||||
ansible-compat >= 0.5.0
|
|
||||||
hcloud >= 1.10.0, < 2
|
hcloud >= 1.10.0, < 2
|
||||||
molecule >= 3.2.1, < 4
|
molecule >= 3.2.1, < 4
|
||||||
pyyaml >= 5.3.1, < 6
|
pyyaml >= 5.3.1, < 6
|
||||||
|
Loading…
Reference in New Issue
Block a user