Skip to content

Commit c667527

Browse files
committed
Remove support for Python 3.7; test support for 3.12 and 3.13
1 parent 22c7b89 commit c667527

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
runs-on: ubuntu-latest
4747
strategy:
4848
matrix:
49-
python-version: ["3.8", "3.9", "3.10", "3.11"]
49+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
5050
steps:
5151
- uses: actions/checkout@v4
5252

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ classifiers = [
1818
"Development Status :: 4 - Beta",
1919
]
2020
dynamic = ["version"]
21-
requires-python = ">=3.7"
21+
requires-python = ">=3.8"
2222
dependencies = [
2323
"click",
2424
"lxml",
@@ -71,8 +71,8 @@ profile = "black"
7171

7272
[tool.black]
7373
line-length = 99
74-
target-version = ['py37']
74+
target-version = ['py38']
7575

7676
[tool.ruff]
7777
line-length = 99
78-
target-version = "py37"
78+
target-version = "py38"

0 commit comments

Comments
 (0)