-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update tox config; update Django and Python versions; change call to mark_safe * Change call to format_html * Tox config: add Python 3.10
- Loading branch information
Showing
2 changed files
with
9 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
[tox] | ||
envlist = py311-django32,py311-django40,py311-django41,py311-django42 | ||
envlist = py310-django42,py312-django42,py310-django50,py312-django50,py310-django51,py313-django51 | ||
|
||
[testenv] | ||
changedir = {toxinidir}/example_project | ||
setenv = | ||
PYTHONWARNINGS = default | ||
deps = | ||
-r{toxinidir}/example_project/requirements_test.txt | ||
django32: Django>=3.2,<3.3 | ||
django40: Django>=4.0,<4.1 | ||
django41: Django>=4.1,<4.2 | ||
django42: Django==4.2 | ||
django42: Django>=4.2,<4.3 | ||
django50: Django>=5.0,<5.1 | ||
django51: Django>=5.1,<5.2 | ||
commands = | ||
python -Wd manage.py test django_mptt_example | ||
basepython = | ||
py311: python3.11 | ||
py310: python3.10 | ||
py312: python3.12 | ||
py313: python3.13 |