Skip to content

Commit 3cea64f

Browse files
Drop Python 3.8 (#1186)
1 parent 0d0fc2d commit 3cea64f

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.github/workflows/main.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ concurrency:
1515
env:
1616
FORCE_COLOR: "1"
1717
TOX_TESTENV_PASSENV: "FORCE_COLOR"
18-
MIN_PYTHON_VERSION: "3.8"
19-
DEFAULT_PYTHON_VERSION: "3.10"
18+
MIN_PYTHON_VERSION: "3.9"
19+
DEFAULT_PYTHON_VERSION: "3.11"
2020

2121
permissions:
2222
contents: read
@@ -38,7 +38,6 @@ jobs:
3838
strategy:
3939
matrix:
4040
python-version:
41-
- "3.8"
4241
- "3.9"
4342
- "3.10"
4443
- "3.11"

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,14 @@ classifiers = [
2121
"Programming Language :: Python",
2222
"Programming Language :: Python :: 3",
2323
"Programming Language :: Python :: 3 :: Only",
24-
"Programming Language :: Python :: 3.8",
2524
"Programming Language :: Python :: 3.9",
2625
"Programming Language :: Python :: 3.10",
2726
"Programming Language :: Python :: 3.11",
2827
"Programming Language :: Python :: 3.12",
2928
"Programming Language :: Python :: 3.13",
3029
"Programming Language :: Python :: Implementation :: CPython",
3130
]
32-
requires-python = ">=3.8"
31+
requires-python = ">=3.9"
3332
dependencies = [
3433
"readme-renderer >= 35.0",
3534
"requests >= 2.20",

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
2-
minversion = 3.8
3-
envlist = lint,types,py{38,39,310,311,312,313},integration,docs
2+
minversion = 3.9
3+
envlist = lint,types,py{39,310,311,312,313},integration,docs
44
isolated_build = True
55

66
[testenv]

0 commit comments

Comments
 (0)