Skip to content

Commit

Permalink
Merge pull request #1520 from Bastian-Krause/bst/drop-py3.8
Browse files Browse the repository at this point in the history
Drop Support for Python 3.8
  • Loading branch information
Emantor authored Oct 14, 2024
2 parents 57711db + 8d68d8b commit a0dda92
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push-pr-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12']
uses: ./.github/workflows/reusable-unit-tests.yml
with:
python-version: ${{ matrix.python-version }}
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/reusable-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ jobs:
run: |
pip install -e ".[dev]"
- name: Lint with pylint
if: inputs.python-version != '3.8'
run: |
pylint --list-msgs-enabled
pylint labgrid
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12']
branch: ['master']
uses: ./.github/workflows/reusable-unit-tests.yml
with:
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Due to the migration, 24.1 includes the following breaking changes:

Other breaking changes include:

FIXME
- Support for Python 3.8 was dropped.

Known issues in 24.1
~~~~~~~~~~~~~~~~~~~~
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,14 @@ authors = [
description = "embedded systems control library for development, testing and installation"
readme = "README.rst"
license = { file="LICENSE" }
requires-python = ">=3.8"
requires-python = ">=3.9"
classifiers = [
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"Operating System :: POSIX :: Linux",
"Topic :: Software Development :: Testing",
"Framework :: Pytest",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down Expand Up @@ -233,7 +232,7 @@ signature-mutators = ["labgrid.step.step"]
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py38, py39, py310, py311, py312
envlist = py39, py310, py311, py312
isolated_build = true
[testenv]
Expand Down

0 comments on commit a0dda92

Please sign in to comment.