Skip to content

Commit e829fff

Browse files
committed
👷 add django 5.2 to CI
1 parent 5a2065b commit e829fff

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Tests and PyPI publishing
33
on:
44
push:
55
branches:
6-
- main
6+
- master
77
tags:
88
- '*'
99
pull_request:
@@ -16,12 +16,16 @@ jobs:
1616
strategy:
1717
matrix:
1818
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
19-
django: ["3.2", "4.2"]
19+
django: ["3.2", "4.2", "5.2"]
2020
exclude:
2121
- python: "3.11"
2222
django: "3.2"
2323
- python: "3.12"
2424
django: "3.2"
25+
- python: "3.8"
26+
django: "5.2"
27+
- python: "3.9"
28+
django: "5.2"
2529

2630
steps:
2731
- uses: actions/checkout@v4

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[tox]
22
envlist =
33
py{38,39,310}-django{32,42}
4+
py310-django52
45
py3{11,12}-django{41,42,52}
56
isort
67
black
@@ -19,6 +20,7 @@ python =
1920
DJANGO =
2021
3.2: django32
2122
4.2: django42
23+
5.2: django52
2224

2325
[testenv]
2426
setenv =

0 commit comments

Comments
 (0)