Skip to content

Commit 3850774

Browse files
committed
build: Drop django 4.2 support and test with django 5.2
1 parent 030c0ad commit 3850774

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
matrix:
2020
os: [ubuntu-latest]
2121
python-version: ["3.12"]
22-
toxenv: [quality, docs, pii_check, django42]
22+
toxenv: [quality, docs, pii_check, django52]
2323
steps:
2424
- uses: actions/checkout@v4
2525
- name: setup python
@@ -39,7 +39,7 @@ jobs:
3939
run: tox
4040

4141
- name: Run coverage
42-
if: matrix.python-version == '3.12' && matrix.toxenv == 'django42'
42+
if: matrix.python-version == '3.12' && matrix.toxenv == 'django52'
4343
uses: codecov/codecov-action@v4
4444
with:
4545
token: ${{ secrets.CODECOV_TOKEN }}

backend/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{311,312}-django{42,52},docs,quality,pii_check
2+
envlist = py{311,312}-django{52},docs,quality,pii_check
33

44
[doc8]
55
; D001 = Line too long

0 commit comments

Comments
 (0)