Skip to content

Commit e788cd6

Browse files
committed
add Django-3.1 to testing matrix
1 parent 4c82cbf commit e788cd6

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ env:
1414
- DJANGOVER=django21
1515
- DJANGOVER=django22
1616
- DJANGOVER=django30
17+
- DJANGOVER=django31
1718

1819
install:
1920
- pip install tox

examples/requirements.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ cssselect==1.0.1
22
django-classy-tags==0.9.0
33
django-sekizai==1.0.0
44
easy-thumbnails==2.6.0
5-
gevent==1.2.2
6-
greenlet==0.4.12
75
Pillow==6.2.0
86
pluggy==0.12.0
97
py==1.8.0

examples/server/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
('node_modules', os.environ.get('NODE_MODULES_DIR', os.path.join(APP_DIR, 'examples/node_modules'))),
7777
)
7878

79-
FORM_RENDERER = 'djng.forms.renderers.DjangoAngularBootstrap3Templates'
79+
# FORM_RENDERER = 'djng.forms.renderers.DjangoAngularBootstrap3Templates'
8080

8181
TEMPLATES = [
8282
{

examples/server/tests/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
os.path.join(BASE_DIR, 'client', 'src'),
5656
)
5757

58-
FORM_RENDERER = 'djng.forms.renderers.DjangoAngularTemplates'
58+
# FORM_RENDERER = 'djng.forms.renderers.DjangoAngularTemplates'
5959

6060
TEMPLATES = [
6161
{

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
'Framework :: Django :: 2.1',
2424
'Framework :: Django :: 2.2',
2525
'Framework :: Django :: 3.0',
26+
'Framework :: Django :: 3.1',
2627
]
2728

2829
setup(

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = coverage-clean, py{36,37,38}-django{21,22,30}, coverage-report
2+
envlist = coverage-clean, py{36,37,38}-django{21,22,30,31}, coverage-report
33
skipsdist = true
44

55
[testenv]
@@ -23,6 +23,7 @@ deps=
2323
django21: Django<2.2
2424
django22: Django<3.0
2525
django30: Django<3.1
26+
django31: Django<3.2
2627

2728
[testenv:coverage-clean]
2829
commands = rm -f .coverage

0 commit comments

Comments
 (0)