Skip to content

Commit 52ca5c4

Browse files
committed
more python django combinations
1 parent 4735a11 commit 52ca5c4

2 files changed

Lines changed: 16 additions & 2 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,18 @@ jobs:
2323
- python-version: "3.12"
2424
tox-env: "py312-dj52"
2525
- python-version: "3.12"
26+
tox-env: "py312-dj60"
27+
- python-version: "3.13"
28+
tox-env: "py313-dj42"
29+
- python-version: "3.13"
30+
tox-env: "py313-dj52"
31+
- python-version: "3.13"
32+
tox-env: "py313-dj60"
33+
- python-version: "3.14"
34+
tox-env: "py314-dj52"
35+
- python-version: "3.14"
36+
tox-env: "py314-dj60"
37+
- python-version: "3.14"
2638
tox-env: "lint"
2739
steps:
2840
- uses: actions/checkout@v5

tox.ini

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ envlist =
33
py{35,36,37,38,310,311}-dj{22}
44
py{36,37,38,39,310,311}-dj{32}
55
py{38,39,310,311,312}-dj{42}
6-
py{310,311,312}-dj{52}
6+
py{310,311,312,313,314}-dj{52}
7+
py{312,313,314}-dj{60}
78
lint
89

910
[testenv]
@@ -12,11 +13,12 @@ deps =
1213
dj32: Django>=3.2,<4
1314
dj42: Django>=4.2,<5
1415
dj52: Django>=5.2,<6
16+
dj60: Django>=6.0,<7
1517
coverage
1618
responses
1719
poetry
1820

19-
extras = dev
21+
extras = dev,bulk_send
2022
setenv =
2123
DJANGO_SETTINGS_MODULE=test_settings
2224
PYTHONPATH={toxinidir}

0 commit comments

Comments
 (0)