Skip to content

Commit 76c21cf

Browse files
github: drop Python 3.8 support
Signed-off-by: Bastian Krause <[email protected]>
1 parent c15f98b commit 76c21cf

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
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:

0 commit comments

Comments
 (0)