mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-02-03 13:14:28 +03:00
42c30dafcb
* Upgrade Python to version 3.11 (Faster CPython) * Update pyupgrade config for Python 3.11 * Update tox env to Python 3.11 * Update to latest Python 3.11.3 * Add a note about lack of support in PythonAnywhere * Rephrase note * Fix casing --------- Co-authored-by: Bruno Alla <alla.brunoo@gmail.com> Co-authored-by: Bruno Alla <browniebroke@users.noreply.github.com>
12 lines
225 B
INI
12 lines
225 B
INI
[tox]
|
|
skipsdist = true
|
|
envlist = py311,black-template
|
|
|
|
[testenv]
|
|
deps = -rrequirements.txt
|
|
commands = pytest {posargs:./tests}
|
|
|
|
[testenv:black-template]
|
|
deps = black
|
|
commands = black --check hooks tests setup.py docs scripts
|