Skip to content

Commit f40a8bc

Browse files
committed
feat: CI - added django 3.1 and 3.2
1 parent b30470b commit f40a8bc

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: [3.8]
19-
django-version: ["2.2", "3.0"]
18+
python-version: [3.8, 3.9]
19+
django-version: ["2.2", "3.0", "3.1", "3.2"]
2020

2121
steps:
2222
- uses: actions/checkout@v2

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{3.6,3.7,3.8,3.9}-django{2.2,3.0,master}
3+
py{3.6,3.7,3.8,3.9}-django{2.2,3.0,3.1,3.2}
44

55
[testenv]
66
commands =
@@ -9,6 +9,8 @@ commands =
99
deps =
1010
django2.2: django~=2.2
1111
django3.0: django~=3.0
12+
django3.1: django~=3.1
13+
django3.2: django~=3.2
1214
djangomaster: https://github.com/django/django/archive/master.tar.gz
1315
.[test]
1416

0 commit comments

Comments
 (0)