Bump python and Django versions in CI

This commit is contained in:
Martin Pépin 2021-10-02 17:27:50 +02:00
parent 47f99f487e
commit 7b7a51ec5f
No known key found for this signature in database
GPG key ID: E7520278B1774448
2 changed files with 19 additions and 7 deletions

View file

@ -46,21 +46,32 @@ python36:
stage: tests stage: tests
script: script:
- tox -e py36-django22 - tox -e py36-django22
- tox -e py36-django30 - tox -e py36-django31
- tox -e py36-django32
python37: python37:
image: python:3.7 image: python:3.7
stage: tests stage: tests
script: script:
- tox -e py37-django22 - tox -e py37-django22
- tox -e py37-django30 - tox -e py37-django31
- tox -e py37-django32
python38: python38:
image: python:3.8 image: python:3.8
stage: tests stage: tests
script: script:
- tox -e py38-django22 - tox -e py38-django22
- tox -e py38-django30 - tox -e py38-django31
- tox -e py38-django32
python39:
image: python:3.9
stage: tests
script:
- tox -e py39-django22
- tox -e py39-django31
- tox -e py39-django32
# --- # ---
# Release artifacts # Release artifacts

View file

@ -1,12 +1,13 @@
[tox] [tox]
envlist = envlist =
py{35,36,37,38}-django22, py{35,36,37,38,39}-django22,
py{36,37,38}-django30 py{36,37,38,39}-django{31,32}
[testenv] [testenv]
deps = deps =
django22: Django==2.2.* django22: Django>=2.2.17
django30: Django==3.0.* django31: Django==3.1.*
django32: Django==3.2.*
python-cas python-cas
python-ldap python-ldap
commands = commands =