mirror of
https://github.com/ansible-collections/hetzner.hcloud
synced 2024-11-10 06:34:13 +00:00
feat: drop support for python3.7 (#270)
This commit is contained in:
parent
2946f778e2
commit
73b955c091
4 changed files with 5 additions and 3 deletions
|
@ -31,7 +31,7 @@ repos:
|
|||
rev: v3.9.0
|
||||
hooks:
|
||||
- id: pyupgrade
|
||||
args: [--py37-plus]
|
||||
args: [--py38-plus]
|
||||
|
||||
- repo: https://github.com/pycqa/isort
|
||||
rev: 5.12.0
|
||||
|
|
|
@ -7,7 +7,7 @@ Ansible Hetzner Cloud Collection for controlling your Hetzner Cloud Resources.
|
|||
|
||||
### Python version compatibility
|
||||
|
||||
This collection depends on the [hcloud](https://github.com/hetznercloud/hcloud-python) library. Due to the [hcloud](https://github.com/hetznercloud/hcloud-python) Python Support Policy this collection requires Python 3.7 or greater.
|
||||
This collection depends on the [hcloud](https://github.com/hetznercloud/hcloud-python) library. Due to the [hcloud](https://github.com/hetznercloud/hcloud-python) Python Support Policy this collection requires Python 3.8 or greater.
|
||||
|
||||
## Release notes
|
||||
|
||||
|
|
2
changelogs/fragments/drop-support-for-python-3.7.yml
Normal file
2
changelogs/fragments/drop-support-for-python-3.7.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
breaking_changes:
|
||||
- Drop support for python 3.7
|
|
@ -1,3 +1,3 @@
|
|||
---
|
||||
modules:
|
||||
python_requires: ">=3.7"
|
||||
python_requires: ">=3.8"
|
||||
|
|
Loading…
Reference in a new issue