Skip to content

Commit fba396c

Browse files
committed
build: Drop Python 3.9 support
which EOLed on 17th of May 2022 and does not receive security support since 31st October 2025 anymore. Signed-off-by: Burfeind, Jan-Niklas <jan-niklas.burfeind@sennheiser.com>
1 parent 4a0388a commit fba396c

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/push-pr-unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
11+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
1212
uses: ./.github/workflows/reusable-unit-tests.yml
1313
secrets:
1414
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/scheduled-unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
14+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
1515
branch: ['master']
1616
uses: ./.github/workflows/reusable-unit-tests.yml
1717
secrets:

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,14 @@ authors = [
1616
description = "embedded systems control library for development, testing and installation"
1717
readme = "README.rst"
1818
license = { file="LICENSE" }
19-
requires-python = ">=3.9"
19+
requires-python = ">=3.10"
2020
classifiers = [
2121
"Intended Audience :: Developers",
2222
"Development Status :: 5 - Production/Stable",
2323
"Operating System :: POSIX :: Linux",
2424
"Topic :: Software Development :: Testing",
2525
"Framework :: Pytest",
2626
"Programming Language :: Python :: 3 :: Only",
27-
"Programming Language :: Python :: 3.9",
2827
"Programming Language :: Python :: 3.10",
2928
"Programming Language :: Python :: 3.11",
3029
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)