Rename Django's dev branch to main.

More information: https://groups.google.com/g/django-developers/c/tctDuKUGosc/
Refs: https://github.com/django/django/pull/14048
This commit is contained in:
Jannis Leidel 2021-03-09 13:37:02 +01:00
parent 46bf236be2
commit 2b18cb6b84
No known key found for this signature in database
GPG key ID: C795956FB489DCA9

11
tox.ini
View file

@ -1,6 +1,6 @@
[tox]
envlist =
py{36,37,38,39}-dj{22,30,31,master}
py{36,37,38,39}-dj{22,30,31,main}
flake8, isort
[gh-actions]
@ -17,9 +17,11 @@ deps =
dj22: Django==2.2.*
dj30: Django==3.0.*
dj31: Django==3.1.*
djmaster: https://github.com/django/django/archive/master.tar.gz
djmain: https://github.com/django/django/archive/main.tar.gz
ignore_outcome =
djmaster: True
djmain: True
ignore_errors =
djmain: True
passenv =
CI
GITHUB_*
@ -28,9 +30,6 @@ usedevelop = True
commands =
pytest {posargs}
[testenv:py{36,37,38,39}-djmaster]
ignore_errors = True
[testenv:flake8]
basepython =
python3.8