Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 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 @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix: # https://docs.djangoproject.com/en/stable/faq/install/#what-python-version-can-i-use-with-django
django-version: ["3.2", "4.2", "5.0", "5.1", "5.2rc1"]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.10']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.11']
exclude:
- django-version: "3.2"
python-version: "3.11"
Expand Down
4 changes: 2 additions & 2 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: 2
build:
os: ubuntu-20.04
os: ubuntu-lts-latest
tools:
python: "3.8"
python: "3.9"
sphinx:
configuration: docs/conf.py
python:
Expand Down
20 changes: 12 additions & 8 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ python =
3.10: py310
3.11: py311
3.12: py312
pypy-3.10: pypy3
3.13: py313
pypy-3.11: pypy3

[gh-actions:env]
DJANGO =
Expand All @@ -16,15 +17,17 @@ DJANGO =
4.2: django42
5.0: django50
5.1: django51
5.2: django52

[tox]
envlist =
py38-django{32,42}
py39-django{32,42}
py310-django{32,42,50,51}
py311-django{42,50,51}
py312-django{42,50,51}
pypy3-django{32,42,50,51}
py310-django{32,42,50,51,52}
py311-django{42,50,51,52}
py312-django{42,50,51,52}
py313-django{42,50,51,52}
pypy3-django{32,42,50,51,52}
flake8
apicheck
linkcheck
Expand All @@ -43,7 +46,8 @@ deps=
django41: Django ~= 4.1
django42: Django ~= 4.2
django50: Django ~= 5.0
django51: Django ~= 5.1rc1
django51: Django ~= 5.1
django52: Django ~= 5.2

linkcheck,apicheck: -r{toxinidir}/requirements/docs.txt
flake8,pydocstyle: -r{toxinidir}/requirements/pkgutils.txt
Expand All @@ -55,12 +59,12 @@ commands =


[testenv:apicheck]
basepython = python3.8
basepython = python3.9
commands =
sphinx-build -W -b apicheck -d {envtmpdir}/doctrees docs docs/_build/apicheck

[testenv:linkcheck]
basepython = python3.8
basepython = python3.9
commands =
sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees docs docs/_build/linkcheck

Expand Down
Loading