Skip to content

Commit

Permalink
Drop Python 3.8 support (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
pederhan authored Jan 16, 2025
1 parent 198dd01 commit 97c02e0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ jobs:
matrix:
os: [ubuntu-latest]
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Note: Primarily tested with Zabbix 7.0 and 6.4, but should work with 6.0 and 5.2

## Requirements

* Python >=3.8
* Python >=3.9
* pip >=21.3
* Zabbix >=6.4

Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "zabbix-auto-config"
dynamic = ["version"]
description = "Zabbix auto config - ZAC"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
license.file = "LICENSE"
keywords = []
authors = [{ name = "Paal Braathen", email = "[email protected]" }]
Expand All @@ -19,7 +19,6 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down Expand Up @@ -77,4 +76,4 @@ force-single-line = true
required-imports = ["from __future__ import annotations"]

[tool.pyright]
pythonVersion = "3.8"
pythonVersion = "3.9"

0 comments on commit 97c02e0

Please sign in to comment.