Skip to content

Commit 5591562

Browse files
authored
Officially Support 3.9 and 3.10, too (#3)
* Officially Support 3.9 and 3.10, too * Update pyproject.toml * Update pyproject.toml
1 parent ba8d61e commit 5591562

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Diff for: .github/workflows/unittests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
python-version: ["3.11", "3.12"]
12+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1313
os: [ubuntu-latest]
1414
steps:
1515
- uses: actions/checkout@v4

Diff for: pyproject.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "maloident"
33
description = "Model classes for the Marktlokation ID Identification API by EDI@Energy (manually fixed)"
44
license = { text = "MIT" }
5-
requires-python = ">=3.11"
5+
requires-python = ">=3.9"
66
authors = [{ name = "your name", email = "[email protected]" }]
77
keywords = ["MaLo Ident", "Marktlokation", "BDEW", "MaLo"]
88
classifiers = [
@@ -13,6 +13,8 @@ classifiers = [
1313
"Operating System :: OS Independent",
1414
"Programming Language :: Python",
1515
"Programming Language :: Python :: 3 :: Only",
16+
"Programming Language :: Python :: 3.9",
17+
"Programming Language :: Python :: 3.10",
1618
"Programming Language :: Python :: 3.11",
1719
"Programming Language :: Python :: 3.12",
1820
]

0 commit comments

Comments
 (0)