Skip to content

Commit

Permalink
chore: minimum python version is 3.10 since we are using match
Browse files Browse the repository at this point in the history
  • Loading branch information
neubi4 committed Nov 21, 2024
1 parent a5e44b6 commit 96f44fe
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 46 deletions.
1 change: 0 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ jobs:
strategy:
matrix:
python:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
Expand Down
1 change: 0 additions & 1 deletion octodns_autodns/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,6 @@ def _apply_Update(self, zone_name, change):

def _apply_Delete(self, zone_name, change):
existing = change.existing
zone = existing.zone

params_for = getattr(self, f'_params_for_{existing._type}')

Expand Down
85 changes: 42 additions & 43 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ documentation = "https://github.com/telekom-mms/octodns-autodns"
keywords = ["octodns", "autodns", "internetx", "dns"]

[tool.poetry.dependencies]
python = ">=3.9,<4.0"
python = ">=3.10,<4.0"
pyyaml = "6.0.2"
dnspython = "2.7.0"
fqdn = "1.5.1"
Expand Down

0 comments on commit 96f44fe

Please sign in to comment.