1
0
Fork 0
mirror of https://github.com/ansible-collections/hetzner.hcloud.git synced 2026-02-04 08:01:49 +00:00

feat!: drop support for Python 3.9

This commit is contained in:
jo 2025-10-24 12:31:31 +02:00
parent fa1485b419
commit b4af465e2d
No known key found for this signature in database
GPG key ID: B2FEC9B22722B984
5 changed files with 6 additions and 4 deletions

View file

@ -31,7 +31,7 @@ repos:
rev: v3.21.0
hooks:
- id: pyupgrade
args: [--py39-plus]
args: [--py310-plus]
- repo: https://github.com/pycqa/isort
rev: 7.0.0

View file

@ -22,7 +22,7 @@ For more information about communication, see the [Ansible communication guide](
## 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.9 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.10 or greater.
## Release notes

View file

@ -0,0 +1,2 @@
breaking_changes:
- Drop support for Python 3.9

View file

@ -7,7 +7,7 @@ combine_as_imports = true
add_imports = ["from __future__ import annotations"]
[tool.pylint.main]
py-version = "3.9"
py-version = "3.10"
recursive = true
jobs = 0

View file

@ -1,3 +1,3 @@
---
modules:
python_requires: ">=3.9"
python_requires: ">=3.10"