Compare commits

..

No commits in common. "0dd5032df971421a0262c4554c24b62d325d34ec" and "22467fd1f42ed63c4efba85d413a0aad3665ae6a" have entirely different histories.

3 changed files with 2 additions and 8 deletions

View File

@ -7,10 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [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
### Fixed

View File

@ -1,9 +1,8 @@
import os
from ansible_compat.ports import cache
from molecule import logger, util
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__)
@ -76,7 +75,7 @@ class HetznerCloud(Driver):
item for item in instance_config_dict if item["instance"] == instance_name
)
@cache
@lru_cache()
def sanity_checks(self):
"""Hetzner Cloud driver sanity checks."""

View File

@ -55,7 +55,6 @@ setup_requires =
setuptools_scm
setuptools_scm_git_archive
install_requires =
ansible-compat >= 0.5.0
hcloud >= 1.10.0, < 2
molecule >= 3.2.1, < 4
pyyaml >= 5.3.1, < 6