Skip to content

Commit 7e9bb5e

Browse files
build: support python311 instead
1 parent c4cdb51 commit 7e9bb5e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
os: [ubuntu-latest]
17-
python-version: ["3.12"]
17+
python-version: ["3.11"]
1818
toxenv: [quality, docs, pii_check, django42, django52]
1919
steps:
2020
- uses: actions/checkout@v4
@@ -35,7 +35,7 @@ jobs:
3535
run: tox
3636

3737
- name: Run coverage
38-
if: matrix.python-version == '3.12' && matrix.toxenv == 'django42'
38+
if: matrix.python-version == '3.11' && matrix.toxenv == 'django42'
3939
uses: codecov/codecov-action@v4
4040
with:
4141
token: ${{ secrets.CODECOV_TOKEN }}

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py312-django{42,52}
2+
envlist = py311-django{42,52}
33

44
[doc8]
55
; D001 = Line too long

0 commit comments

Comments
 (0)