Skip to content

Commit a0dda92

Browse files
authored
Merge pull request #1520 from Bastian-Krause/bst/drop-py3.8
Drop Support for Python 3.8
2 parents 57711db + 8d68d8b commit a0dda92

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

.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.8', '3.9', '3.10', '3.11', '3.12']
11+
python-version: ['3.9', '3.10', '3.11', '3.12']
1212
uses: ./.github/workflows/reusable-unit-tests.yml
1313
with:
1414
python-version: ${{ matrix.python-version }}

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ jobs:
4747
run: |
4848
pip install -e ".[dev]"
4949
- name: Lint with pylint
50-
if: inputs.python-version != '3.8'
5150
run: |
5251
pylint --list-msgs-enabled
5352
pylint labgrid

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
13+
python-version: ['3.9', '3.10', '3.11', '3.12']
1414
branch: ['master']
1515
uses: ./.github/workflows/reusable-unit-tests.yml
1616
with:

CHANGES.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Due to the migration, 24.1 includes the following breaking changes:
4242

4343
Other breaking changes include:
4444

45-
FIXME
45+
- Support for Python 3.8 was dropped.
4646

4747
Known issues in 24.1
4848
~~~~~~~~~~~~~~~~~~~~

pyproject.toml

Lines changed: 2 additions & 3 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.8"
19+
requires-python = ">=3.9"
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.8",
2827
"Programming Language :: Python :: 3.9",
2928
"Programming Language :: Python :: 3.10",
3029
"Programming Language :: Python :: 3.11",
@@ -233,7 +232,7 @@ signature-mutators = ["labgrid.step.step"]
233232
[tool.tox]
234233
legacy_tox_ini = """
235234
[tox]
236-
envlist = py38, py39, py310, py311, py312
235+
envlist = py39, py310, py311, py312
237236
isolated_build = true
238237
239238
[testenv]

0 commit comments

Comments
 (0)