Skip to content

Commit c8140ae

Browse files
authored
CI for django 3.2 (#127)
1 parent 86f649e commit c8140ae

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
python-version: [3.6, 3.9]
15-
django: ["2.2", "3.1"]
15+
django: ["2.2", "3.2"]
1616

1717
steps:
1818
- uses: actions/checkout@v2
@@ -83,6 +83,6 @@ jobs:
8383
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
8484
- name: Run integration tests
8585
env:
86-
TOX_ENV: py3.9-django3.1-channels${{ matrix.channels }}-cypress
86+
TOX_ENV: py3.9-django3.2-channels${{ matrix.channels }}-cypress
8787
run: |
8888
tox -e $TOX_ENV

tox.ini

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
requires = tox-venv
33
envlist =
4-
{py3.6,py3.7,py3.8,py3.9}-django{2.2,3.0,3.1}
4+
{py3.6,py3.7,py3.8,py3.9}-django{2.2,3.0,3.2}
55

66
[testenv]
77
setenv =
@@ -17,15 +17,15 @@ commands =
1717
deps =
1818
django2.2: Django>=2.2,<3.0
1919
django3.0: Django>=3.0,<3.1
20-
django3.1: Django>=3.1,<3.2
20+
django3.2: Django>=3.2,<3.3
2121
-r{toxinidir}/requirements_test.txt
2222
basepython =
2323
py3.9: python3.9
2424
py3.8: python3.8
2525
py3.7: python3.7
2626
py3.6: python3.6
2727

28-
[testenv:py3.9-django3.1-channels2.4-cypress]
28+
[testenv:py3.9-django3.2-channels2.4-cypress]
2929
setenv =
3030
PYTHONPATH = {toxinidir}:{toxinidir}/sockpuppet
3131
whitelist_externals =
@@ -42,14 +42,14 @@ commands =
4242
codecov -e TOXENV
4343

4444
deps =
45-
django3.1: Django>=3.1,<3.2
45+
django3.1: Django>=3.2,<3.3
4646
channels2.4: channels<3.0
4747
-r{toxinidir}/requirements_test.txt
4848

4949
basepython =
5050
py3.9: python3.9
5151

52-
[testenv:py3.9-django3.1-channels3.0-cypress]
52+
[testenv:py3.9-django3.2-channels3.0-cypress]
5353
setenv =
5454
PYTHONPATH = {toxinidir}:{toxinidir}/sockpuppet
5555
whitelist_externals =
@@ -66,7 +66,7 @@ commands =
6666
codecov -e TOXENV
6767

6868
deps =
69-
django3.1: Django>=3.1,<3.2
69+
django3.1: Django>=3.2,<3.3
7070
channels3.0: channels>=3.0,<3.1
7171
-r{toxinidir}/requirements_test.txt
7272

0 commit comments

Comments
 (0)