Skip to content

Commit

Permalink
Drop support for Python 3.8 because of its end of life
Browse files Browse the repository at this point in the history
  • Loading branch information
Josef-Friedrich committed Jan 7, 2025
1 parent ed9ca23 commit 1503153
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']

steps:
# https://github.com/marketplace/actions/checkout
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ classifiers = [
]

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.9"
nagiosplugin = "^1.2"

[tool.poetry.group.dev.dependencies]
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{38,39,310,311,312,313}, format, readme, docs, lint, typecheck
envlist = py{39,310,311,312,313}, format, readme, docs, lint, typecheck
isolated_build = True

[testenv]
Expand Down Expand Up @@ -49,7 +49,6 @@ commands =

[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
Expand Down

0 comments on commit 1503153

Please sign in to comment.