summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2021-03-02 16:44:44 +0100
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2021-03-02 16:44:44 +0100
commitfa092f786e69c88c5a278309c6e2fb78d81b5975 (patch)
tree4fab046c0a8393ab4b6de979c693f23e0b542304 /.github
parent3db47018c75f9fc8d853665e97a0021462b39ab5 (diff)
downloadsemantic-version-fa092f786e69c88c5a278309c6e2fb78d81b5975.tar.gz
Add support for Python 3.9django-31
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml33
1 files changed, 20 insertions, 13 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index a4a1d3d..67e1fbf 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -12,29 +12,36 @@ jobs:
strategy:
fail-fast: false
matrix:
- python-version:
- - 3.4
- - 3.6
- - pypy3
- django-family:
- - 111
- - 22
include:
+ # Django 1.11: 3.4, 3.7
+ - python-version: 2.7
+ django-family: 111
+ - python-version: 3.4
+ django-family: 111
+ - python-version: 3.7
+ django-family: 111
+ - python-version: pypy3
+ django-family: 111
+
+ # Django 2.2: 3.5, 3.7, 3.8
+ - python-version: 3.5
+ django-family: 22
- python-version: 3.7
django-family: 22
- python-version: 3.8
django-family: 22
- - python-version: 3.7
+ - python-version: pypy3
+ django-family: 22
+
+ # Django 3.1: Python 3.6, 3.8, 3.9
+ - python-version: 3.6
django-family: 31
- python-version: 3.8
django-family: 31
- - python-version: pypy3
+ - python-version: 3.9
django-family: 31
- exclude:
- python-version: pypy3
- django-family: 111
- - python-version: 3.4
- django-family: 22
+ django-family: 31
env:
TOXENV: django${{ matrix.django-family }}