Skip to content

Commit 97c02e0

Browse files
authored
Drop Python 3.8 support (#96)
1 parent 198dd01 commit 97c02e0

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/test.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ jobs:
99
matrix:
1010
os: [ubuntu-latest]
1111
python-version:
12-
- '3.8'
1312
- '3.9'
1413
- '3.10'
1514
- '3.11'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Note: Primarily tested with Zabbix 7.0 and 6.4, but should work with 6.0 and 5.2
66

77
## Requirements
88

9-
* Python >=3.8
9+
* Python >=3.9
1010
* pip >=21.3
1111
* Zabbix >=6.4
1212

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "zabbix-auto-config"
77
dynamic = ["version"]
88
description = "Zabbix auto config - ZAC"
99
readme = "README.md"
10-
requires-python = ">=3.8"
10+
requires-python = ">=3.9"
1111
license.file = "LICENSE"
1212
keywords = []
1313
authors = [{ name = "Paal Braathen", email = "[email protected]" }]
@@ -19,7 +19,6 @@ classifiers = [
1919
"License :: OSI Approved :: MIT License",
2020
"Programming Language :: Python",
2121
"Programming Language :: Python :: 3",
22-
"Programming Language :: Python :: 3.8",
2322
"Programming Language :: Python :: 3.9",
2423
"Programming Language :: Python :: 3.10",
2524
"Programming Language :: Python :: 3.11",
@@ -77,4 +76,4 @@ force-single-line = true
7776
required-imports = ["from __future__ import annotations"]
7877

7978
[tool.pyright]
80-
pythonVersion = "3.8"
79+
pythonVersion = "3.9"

0 commit comments

Comments
 (0)