Skip to content

Commit f56046b

Browse files
committed
Drop support for Python 3.8.
1 parent 056ba6a commit f56046b

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
platform: [ubuntu-latest, windows-latest]
19-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
19+
python-version: ["3.9", "3.10", "3.11", "3.12"]
2020

2121
steps:
2222
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ exclude = [
2525
]
2626

2727
[tool.poetry.dependencies]
28-
python = "^3.8"
28+
python = "^3.9"
2929
asn1crypto = "^1.4.0"
3030
cbor2 = "^5.4.2"
3131
certvalidator = "^0.11.1"

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@ envlist =
33
check
44
build
55
build_docs
6-
py{38,39,310,311,312}
6+
py{39,310,311,312}
77
isolated_build = True
88
skip_missing_interpreters = True
99

1010

1111
[gh-actions]
1212
python =
13-
3.8: py38
1413
3.9: py39
1514
3.10: check, build, build_docs, py310
1615
3.11: py311

0 commit comments

Comments
 (0)