Skip to content

Commit 0153047

Browse files
committed
Add Python 3.9 to pipeline for Django 3.0 and 3.1
1 parent 6bf7655 commit 0153047

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

azure-pipelines.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121

2222
strategy:
2323
matrix:
24+
Python 3.9 - Django 3.1:
25+
python.version: '3.9'
26+
tox.env: 'py39-django31'
2427
Python 3.8 - Django 3.1:
2528
python.version: '3.8'
2629
tox.env: 'py38-django31'
@@ -31,6 +34,9 @@ jobs:
3134
python.version: '3.6'
3235
tox.env: 'py36-django31'
3336

37+
Python 3.9 - Django 3.0:
38+
python.version: '3.9'
39+
tox.env: 'py39-django30'
3440
Python 3.8 - Django 3.0:
3541
python.version: '3.8'
3642
tox.env: 'py38-django30'
@@ -77,6 +83,9 @@ jobs:
7783

7884
strategy:
7985
matrix:
86+
Python 3.9 - Django 3.1:
87+
python.version: '3.9'
88+
tox.env: 'py39-django31'
8089
Python 3.8 - Django 3.1:
8190
python.version: '3.8'
8291
tox.env: 'py38-django31'
@@ -87,6 +96,9 @@ jobs:
8796
python.version: '3.6'
8897
tox.env: 'py36-django31'
8998

99+
Python 3.9 - Django 3.0:
100+
python.version: '3.9'
101+
tox.env: 'py39-django30'
90102
Python 3.8 - Django 3.0:
91103
python.version: '3.8'
92104
tox.env: 'py38-django30'

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[tox]
22
envlist =
33
{py36,py37}-django22,
4-
{py36,py37,py38}-django30,
5-
{py36,py37,py38}-django31,
4+
{py36,py37,py38,py39}-django30,
5+
{py36,py37,py38,py39}-django31,
66
{py36,py37,py38,py39}-django32
77

88
[testenv]

0 commit comments

Comments
 (0)