Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14', '3.14t']

steps:
- uses: actions/checkout@v5
Expand Down
11 changes: 8 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ envlist =
py{310,311,312}-dj50
py{310,311,312}-dj51
py{310,311,312,313,314}-dj52
py{312,313,314}-dj60
py{312,313,314}-djmain
py{312,313,314,314t}-dj60
py{312,313,314,314t}-djmain

skipsdist = True

Expand Down Expand Up @@ -36,4 +36,9 @@ python =
3.11: py311
3.12: py312
3.13: py313
3.14: py314
# What to do here?!?
# Left side will always be Python `3.14` if it is python3.14 or python3.14t
# Right side must be `py314` or `py314t` so one or the other will always fail.
# Is there a way to OR the right side? `3.14: py314 | py314t`
3.14: py314t
# 3.14t: py314t
Loading