diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml
index 9cee452..eebbec6 100644
--- a/.github/workflows/build-and-test.yml
+++ b/.github/workflows/build-and-test.yml
@@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- python-version: [ "3.10", "3.11", "3.12", "3.13" ]
+ python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
steps:
- name: Checkout
uses: actions/checkout@v6
@@ -45,7 +45,7 @@ jobs:
contents: write
strategy:
matrix:
- python-version: [ "3.10", "3.11", "3.12", "3.13" ]
+ python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
steps:
- name: Checkout
uses: actions/checkout@v6
@@ -86,7 +86,7 @@ jobs:
- name: Download coverage artifact
uses: actions/download-artifact@v7
with:
- name: pytest-results-3.13
+ name: pytest-results-3.14
- name: Run coverage badge
run: |
sudo apt-get install xq
@@ -112,12 +112,12 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
- python-version: '3.12'
+ python-version: '3.14'
cache: poetry
cache-dependency-path: poetry.lock
- name: Set Poetry environment
run: |
- poetry env use 3.12
+ poetry env use 3.14
- name: Install dependencies
run: |
poetry install --no-root
diff --git a/badges/coverage-python.svg b/badges/coverage-python.svg
index 1af0daf..9fb37a6 100644
--- a/badges/coverage-python.svg
+++ b/badges/coverage-python.svg
@@ -17,7 +17,7 @@
python:coverage
- 96.9%
- 96.9%
+ 96.8%
+ 96.8%
diff --git a/pyproject.toml b/pyproject.toml
index ec3d5f3..79ad4bf 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -21,6 +21,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
+ "Programming Language :: Python :: 3.14",
]
urls = { homepage = "https://sbom.siemens.io/", repository = "https://github.com/siemens/standard-bom-python", "Bug Tracker" = "https://github.com/siemens/standard-bom-python/issues", documentation = "https://github.com/siemens/standard-bom-python/blob/main/README.md" }
diff --git a/tox.toml b/tox.toml
index e27b3d0..ae30293 100644
--- a/tox.toml
+++ b/tox.toml
@@ -1,5 +1,5 @@
requires = ["tox>=4"]
-env_list = ["lint", "type", "3.10", "3.11", "3.12", "3.13"]
+env_list = ["lint", "type", "3.10", "3.11", "3.12", "3.13", "3.14"]
[env_run_base]
description = "Run unit tests"