change django versions

This commit is contained in:
Gonçalo Valério 2021-01-20 18:03:34 +00:00
parent 403dd6b67d
commit 23fe7fc3de
2 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
python_version: [3.6, 3.7, 3.8]
django_version: [2.2, 3.0]
django_version: [2.2, 3.1]
steps:
- name: Checkout code

View File

@ -1,6 +1,6 @@
[tox]
envlist =
{py3.6,py3.7,py3.8}-django{2.2,3.0}
{py3.6,py3.7,py3.8}-django{2.2,3.1}
[testenv]
setenv =
@ -8,7 +8,7 @@ setenv =
commands = pytest --cov=django_cryptolock tests/
deps =
django2.2: django>=2.2,<3.0
django3.0: django>=3.0,<3.1
django3.0: django>=3.1,<3.2
-r {toxinidir}/requirements_test.txt
basepython =
py3.8: python3.8