Skip to content

Commit 01f6431

Browse files
committed
Drop official support for EOL Python 3.8
1 parent 53fb69d commit 01f6431

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
18+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1919
env:
2020
UV_PYTHON: ${{ matrix.python-version }}
2121
steps:

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ classifiers = [
1616
"License :: OSI Approved :: BSD License",
1717
"Operating System :: OS Independent",
1818
"Programming Language :: Python",
19-
"Programming Language :: Python :: 3.8",
2019
"Programming Language :: Python :: 3.9",
2120
"Programming Language :: Python :: 3.10",
2221
"Programming Language :: Python :: 3.11",
@@ -26,7 +25,7 @@ classifiers = [
2625
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
2726
"Topic :: Software Development :: Libraries :: Python Modules",
2827
]
29-
requires-python = ">=3.8.1"
28+
requires-python = "~=3.9"
3029
dependencies = []
3130

3231
[project.urls]

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
[tox]
2-
envlist = py{3.8,3.9,3.10,3.11,3.12,3.13}
2+
envlist = py{3.9,3.10,3.11,3.12,3.13}
33

44
[testenv]
55
basepython =
6-
py3.8: python3.8
76
py3.9: python3.9
87
py3.10: python3.10
98
py3.11: python3.11

0 commit comments

Comments
 (0)