Skip to content

Commit 7678d75

Browse files
committed
test
1 parent 9ba758a commit 7678d75

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/python-publish.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,18 @@ jobs:
3535
3636
build-n-publish:
3737
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
38-
runs-on: ubuntu-latest
39-
# Specifying a GitHub environment, # Specifying a GitHub environment, which is strongly recommended by PyPI: https://docs.pypi.org/trusted-publishers/adding-a-publisher/
40-
# you have to create an environment in your repository settings and add the environment name here
38+
runs-on: ${{ matrix.os }}
39+
strategy:
40+
matrix:
41+
python-version: [ "3.12" ]
42+
os: [ ubuntu-latest ]
4143
environment: release
4244
permissions:
43-
# IMPORTANT: this permission is mandatory for trusted publishing
4445
id-token: write
4546
needs: tests
4647
steps:
4748
- uses: actions/checkout@v4
48-
- name: Set up Python
49+
- name: Set up Python ${{ matrix.python-version }}
4950
uses: actions/setup-python@v5
5051
with:
5152
python-version: ${{ matrix.python-version }}

.github/workflows/unittests.yml

Lines changed: 1 addition & 1 deletion
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.10", "3.11", "3.12"]
12+
python-version: ["3.11", "3.12"]
1313
pydantic: [true, false]
1414
os: [ubuntu-latest]
1515
steps:

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "fundamend"
33
description = "XML basierte Formate und DatemModelle für die Energiewirtschaft in Deutschland"
44
license = { text = "MIT" }
5-
requires-python = ">=3.10"
5+
requires-python = ">=3.11"
66
authors = [{ name = "Hochfrequenz Unternehmensberatung GmbH", email = "[email protected]" }]
77
keywords = ["BDEW", "XML", "AHB", "MIG", "Marktkommunikation"]
88
classifiers = [
@@ -13,7 +13,6 @@ classifiers = [
1313
"Operating System :: OS Independent",
1414
"Programming Language :: Python",
1515
"Programming Language :: Python :: 3 :: Only",
16-
"Programming Language :: Python :: 3.10",
1716
"Programming Language :: Python :: 3.11",
1817
"Programming Language :: Python :: 3.12",
1918
]

0 commit comments

Comments
 (0)