Skip to content

Commit

Permalink
build: Tested against Django 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jramnai authored and aleksihakli committed Sep 2, 2021
1 parent 2ece702 commit e64a94e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
max-parallel: 5
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9']
django-version: ['2.2', '3.0', '3.1', 'main']
django-version: ['2.2', '3.0', '3.1', '3.2', 'main']

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{36,37,38,39}-dj{22,30,31}
py{36,37,38,39}-dj{22,30,31,32}
py{38,39}-djmain
qa

Expand All @@ -16,6 +16,7 @@ DJANGO =
2.2: dj22
3.0: dj30
3.1: dj31
3.2: dj32
main: djmain

[testenv]
Expand All @@ -24,6 +25,7 @@ deps =
dj22: django>=2.2,<2.3
dj30: django>=3.0,<3.1
dj31: django>=3.1,<3.2
dj32: django>=3.2,<3.3
djmain: https://github.com/django/django/archive/main.tar.gz
usedevelop = True
ignore_outcome =
Expand Down

0 comments on commit e64a94e

Please sign in to comment.