Skip to content

Commit 5af3ffe

Browse files
committed
Drop support for Python 3.8
Dropped because it's EOL.
1 parent 2adc083 commit 5af3ffe

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
# Keep this in sync with tox.ini
12-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
12+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1313
platform: [ubuntu-latest, macos-latest, windows-latest]
1414
runs-on: ${{ matrix.platform }}
1515
steps:

docs/changes/+c324a920.misc.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Drop support for Python 3.8

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,13 @@ classifiers = [
1717
"Natural Language :: English",
1818
"Programming Language :: Python",
1919
"Programming Language :: Python :: 3",
20-
"Programming Language :: Python :: 3.8",
2120
"Programming Language :: Python :: 3.9",
2221
"Programming Language :: Python :: 3.10",
2322
"Programming Language :: Python :: 3.11",
2423
"Programming Language :: Python :: 3.12",
2524
"Programming Language :: Python :: 3.13",
2625
]
27-
requires-python = ">=3.8"
26+
requires-python = ">=3.9"
2827
dependencies = [
2928
'astroid>=2.7;python_version<"3.12"',
3029
'astroid>=3;python_version>="3.12"',

tox.ini

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
isolated_build = true
33
envlist =
44
# Keep this in sync with .github/workflows/main.yml
5-
py{38,39,310,311,312,313}
5+
py{39,310,311,312,313}
66
format
77
typecheck
88
lint
@@ -11,12 +11,11 @@ envlist =
1111

1212
[gh-actions]
1313
python =
14-
3.8: py38
1514
3.9: py39
1615
3.10: py310
1716
3.11: py311
18-
3.12: py312, format, typecheck, lint, doc, release_notes
19-
3.13: py313
17+
3.12: py312
18+
3.13: py313, format, typecheck, lint, doc, release_notes
2019

2120
[testenv]
2221
usedevelop = True

0 commit comments

Comments
 (0)