Skip to content

Commit be2e781

Browse files
authored
Rename Django's dev branch to main. (#110)
* Rename Django's dev branch to main. More information: https://groups.google.com/g/django-developers/c/tctDuKUGosc/ Refs: django/django#14048 * Add Python 3.9 to GHA config.
1 parent 8e494b5 commit be2e781

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
max-parallel: 5
1111
matrix:
12-
python-version: ['3.6', '3.7', '3.8']
12+
python-version: ['3.6', '3.7', '3.8', '3.9']
1313

1414
steps:
1515
- uses: actions/checkout@v2

tox.ini

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
envlist =
33
# list of supported Django/Python versions:
44
# https://docs.djangoproject.com/en/3.1/faq/install/#what-python-version-can-i-use-with-django
5-
py{36,37,38,39}-django{22,30,31,master}
5+
py{36,37,38,39}-dj{22,30,31}
6+
py{38,39}-djmain
67
py38-{lint,docs}
78

89
[gh-actions]
@@ -23,10 +24,10 @@ commands =
2324
{envbindir}/coverage xml
2425
deps =
2526
-r{toxinidir}/tests/requirements.txt
26-
django22: django>=2.2,<2.3
27-
django30: django>=3.0,<3.1
28-
django31: django>=3.1,<3.2
29-
djangomaster: https://github.com/django/django/archive/master.tar.gz
27+
dj22: django>=2.2,<2.3
28+
dj30: django>=3.0,<3.1
29+
dj31: django>=3.1,<3.2
30+
djmain: https://github.com/django/django/archive/main.tar.gz
3031

3132
[testenv:py38-lint]
3233
basepython = python3.8

0 commit comments

Comments
 (0)