Skip to content

Commit a159fa6

Browse files
committed
Add support for python 3.14
1 parent ea3b9ef commit a159fa6

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,14 @@ jobs:
2929
- "3.11"
3030
- "3.12"
3131
- "3.13"
32+
- "3.14"
3233
steps:
33-
- uses: actions/checkout@v4
34-
- uses: actions/setup-python@v5
34+
- uses: actions/checkout@v6
35+
- uses: actions/setup-python@v6
3536
with:
3637
python-version: ${{ matrix.python-version }}
37-
- uses: astral-sh/setup-uv@v5
38+
- uses: astral-sh/setup-uv@v6
39+
- run: uv cache prune --ci
3840
- run: uv pip install --system tox tox-uv
3941
- run: tox -f py$(echo ${{ matrix.python-version }} | tr -d .)
4042
- uses: codecov/codecov-action@v4

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ envlist =
33
py{39,310,311}-dj42
44
py{310,311,312}-dj50
55
py{310,311,312,313}-dj51
6-
py{310,311,312,313}-dj52
7-
py{312,313}-dj60
6+
py{310,311,312,313,3.14}-dj52
7+
py{312,313,3.14}-dj60
88
skipsdist = True
99

1010
[testenv]

0 commit comments

Comments
 (0)