Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ classifiers = [
"Topic :: Internet :: Name Service (DNS)",
"Topic :: System :: Networking",
]
requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = [
"cloudflare",
"netifaces",
Expand All @@ -49,7 +49,7 @@ Repository = "https://github.com/welchworks/cflan"
Issues = "https://github.com/welchworks/cflan/issues"

[tool.ruff]
target-version = "py39"
target-version = "py310"
line-length = 88
indent-width = 4

Expand Down Expand Up @@ -84,7 +84,7 @@ paths = ["set_dns.py", "install.py"]
min_confidence = 80

[tool.mypy]
python_version = "3.9"
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
Expand Down
6 changes: 3 additions & 3 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# Install with: pip install -r requirements-dev.txt

# Testing
pytest>=8.4.2
pytest>=9.1.1
pytest-cov>=7.1.0

# Type checking
mypy>=1.19.1
mypy>=2.3.1
types-PyYAML
types-requests

# Linting and formatting (via pre-commit)
pre-commit>=4.3.0
pre-commit>=4.6.2
vulture>=2.16
Loading