Skip to content

Commit a1376fb

Browse files
committed
Add support for Python 3.14 and also test 3.11-3.14
1 parent 2d09634 commit a1376fb

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/test-suite.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,20 @@ on:
77
pull_request:
88
branches: ["main"]
99

10+
env:
11+
FORCE_COLOR: 1
12+
1013
jobs:
1114
tests:
1215
name: "Python ${{ matrix.python-version }}"
1316
runs-on: "ubuntu-latest"
1417

1518
strategy:
1619
matrix:
17-
python-version: ["3.10"]
20+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1821

1922
steps:
20-
- uses: "actions/checkout@v4"
23+
- uses: "actions/checkout@v6"
2124
- uses: "actions/setup-python@v6"
2225
with:
2326
python-version: "${{ matrix.python-version }}"

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ classifiers = [
1919
"Programming Language :: Python :: 3.11",
2020
"Programming Language :: Python :: 3.12",
2121
"Programming Language :: Python :: 3.13",
22+
"Programming Language :: Python :: 3.14",
2223
"Topic :: Internet :: WWW/HTTP",
2324
]
2425
dependencies = [

0 commit comments

Comments
 (0)