Skip to content

Commit 0dce6e5

Browse files
authored
Merge pull request #3 from worldworm/dev
adds python 3.9 & 3.11 support (#2)
2 parents 50a7082 + 689ab7f commit 0dce6e5

File tree

3 files changed

+44
-5
lines changed

3 files changed

+44
-5
lines changed

.github/workflows/pylint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.10"]
10+
python-version: ["3.11", "3.10", "3.9"]
1111
steps:
1212
- uses: actions/checkout@v3
1313
- name: Set up Python ${{ matrix.python-version }}

poetry.lock

Lines changed: 41 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "hcloud-selfdestruct"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
description = "cli tool to self destruct a hetzner cloud server"
55
authors = ["worldworm"]
66
readme = "README.md"
@@ -11,7 +11,7 @@ license = "MIT"
1111
packages = [{include = "hcloud_selfdestruct"}]
1212

1313
[tool.poetry.dependencies]
14-
python = "^3.10"
14+
python = ">=3.9,<3.12"
1515
hcloud = "^1.18.2"
1616
apprise = "^1.2.1"
1717

0 commit comments

Comments
 (0)