Skip to content

Commit 57c2ba2

Browse files
committed
Add Django 2.2a1 to the test matrix
Django 2.2 alpha 1 was released on January 17, 2019. https://www.djangoproject.com/weblog/2019/jan/17/django-22-alpha-1/
1 parent da38d0e commit 57c2ba2

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

.travis.yml

+6
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ matrix:
2929
env: TOXENV=py36-dj21
3030
- python: 3.7
3131
env: TOXENV=py37-dj21
32+
- python: 3.5
33+
env: TOXENV=py35-dj22
34+
- python: 3.6
35+
env: TOXENV=py36-dj22
36+
- python: 3.7
37+
env: TOXENV=py37-dj22
3238
- python: 3.5
3339
env: TOXENV=py35-djmaster
3440
- python: 3.6

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ def readall(path):
3333
"Framework :: Django :: 1.11",
3434
"Framework :: Django :: 2.0",
3535
"Framework :: Django :: 2.1",
36+
"Framework :: Django :: 2.2",
3637
"Intended Audience :: Developers",
3738
"License :: OSI Approved :: BSD License",
3839
"Operating System :: OS Independent",

tox.ini

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ envlist =
33
py{27,34,35,36,37}-dj111
44
py{34,35,36,37}-dj20
55
py{35,36,37}-dj21
6+
py{35,36,37}-dj22
67
py{35,36,37}-djmaster
78
postgresql,
89
mariadb,
@@ -15,6 +16,7 @@ deps =
1516
dj111: Django>=1.11,<2.0
1617
dj20: Django>=2.0,<2.1
1718
dj21: Django>=2.1,<2.2
19+
dj22: Django>=2.2a1,<2.3
1820
djmaster: https://github.com/django/django/archive/master.tar.gz
1921
coverage
2022
django_jinja

0 commit comments

Comments
 (0)