Skip to content

Commit 663a9dc

Browse files
committed
Drop support for Python 3.8
Drop support for Python 3.8
1 parent f7bc1ed commit 663a9dc

File tree

7 files changed

+392
-416
lines changed

7 files changed

+392
-416
lines changed

.github/workflows/pip-compile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup Python
1313
uses: actions/setup-python@v5
1414
with:
15-
python-version: "3.8"
15+
python-version: "3.9"
1616

1717
- name: Install system dependencies
1818
run: |

.github/workflows/tox-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup Python
1616
uses: actions/setup-python@v5
1717
with:
18-
python-version: 3.8
18+
python-version: 3.9
1919
- name: Install Tox
2020
run: pip install tox 'virtualenv<20.21.1'
2121
- name: Run Linting
@@ -42,7 +42,7 @@ jobs:
4242
strategy:
4343
matrix:
4444
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
45-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
45+
python-version: ["3.9", "3.10", "3.11", "3.12"]
4646
steps:
4747
- uses: actions/checkout@v4
4848
- name: Set up Python ${{ matrix.python-version }}
@@ -89,7 +89,7 @@ jobs:
8989
- name: Setup Python
9090
uses: actions/setup-python@v5
9191
with:
92-
python-version: 3.8
92+
python-version: 3.9
9393
- name: Install Tox
9494
run: pip install tox
9595
- name: Run Tox
@@ -170,7 +170,7 @@ jobs:
170170
- name: Setup Python
171171
uses: actions/setup-python@v5
172172
with:
173-
python-version: 3.8
173+
python-version: 3.9
174174
- name: Install Tox
175175
run: pip install tox 'virtualenv<20.21.1'
176176
- name: Run Tox

pip-compile.yml

Lines changed: 0 additions & 41 deletions
This file was deleted.

requirements-test.txt

Lines changed: 269 additions & 266 deletions
Large diffs are not rendered by default.

requirements.txt

Lines changed: 116 additions & 101 deletions
Large diffs are not rendered by default.

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
include_package_data=True,
1414
classifiers=[
1515
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
16-
'Programming Language :: Python :: 3.8',
1716
'Programming Language :: Python :: 3.9',
1817
'Programming Language :: Python :: 3.10',
1918
'Programming Language :: Python :: 3.11',

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = pip-compile, docs, lint, mypy, security, py38, py39, py310, py311, py312
2+
envlist = pip-compile, docs, lint, mypy, security, py39, py310, py311, py312
33

44
[testenv]
55
envdir = {toxworkdir}/shared-environment
@@ -13,7 +13,7 @@ commands=
1313
--cov-report xml --cov-report html {posargs}
1414

1515
[testenv:pip-compile]
16-
basepython = python3.8
16+
basepython = python3.9
1717
skip_install = true
1818
deps = pip-tools
1919
commands =

0 commit comments

Comments
 (0)