Skip to content

Commit 23d9d51

Browse files
authored
Merge pull request #202 from elfosardo/remove-py38
Remove Python 3.8 support
2 parents 93c555b + aec6abf commit 23d9d51

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

.github/workflows/docs-testing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-22.04
99
strategy:
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

1313
steps:
1414
- uses: actions/checkout@v2

.github/workflows/pep8-testing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-22.04
99
strategy:
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

1313
steps:
1414
- uses: actions/checkout@v2

.github/workflows/unit-testing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-22.04
99
strategy:
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

1313
steps:
1414
- uses: actions/checkout@v2

setup.cfg

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description_file =
66
author = eNovance
77
author_email = [email protected]
88
home_page = https://github.com/redhat-cip/hardware
9-
python_requires = >=3.8
9+
python_requires = >=3.9
1010
classifier =
1111
Topic :: System :: Hardware
1212
Intended Audience :: Information Technology
@@ -16,7 +16,6 @@ classifier =
1616
Programming Language :: Python
1717
Programming Language :: Python :: 3
1818
Programming Language :: Python :: 3 :: Only
19-
Programming Language :: Python :: 3.8
2019
Programming Language :: Python :: 3.9
2120
Programming Language :: Python :: 3.10
2221
Programming Language :: Python :: 3.11

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 4.4.0
3-
envlist = py38,py39,py310,py311,py312,pep8,cover,docs
3+
envlist = py39,py310,py311,py312,pep8,cover,docs
44
skipsdist = True
55
ignore_basepython_conflict=true
66

@@ -36,7 +36,7 @@ commands = {posargs}
3636
[testenv:cover]
3737
deps=
3838
{[testenv]deps}
39-
coverage!=4.4,>=4.0 # Apache-2.0
39+
coverage>=4.4 # Apache-2.0
4040
setenv =
4141
VIRTUAL_ENV={envdir}
4242
PYTHON=coverage run --source hardware --omit='*tests*' --parallel-mode

0 commit comments

Comments
 (0)