File tree Expand file tree Collapse file tree 4 files changed +13
-8
lines changed Expand file tree Collapse file tree 4 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -2,13 +2,20 @@ language: python
2
2
python :
3
3
- 2.7
4
4
- 3.4
5
+ - 3.5
6
+ - 3.6
5
7
- pypy
6
8
env :
7
- - DJANGO=1.9.13
8
- - DJANGO=1.10.7
9
9
- DJANGO=1.11
10
+ - DJANGO=2.0
10
11
install :
11
12
- pip install -e .
12
13
- pip install -q Django==$DJANGO
13
14
script :
14
15
- DJANGO_SETTINGS_MODULE=suit.tests.settings django-admin test suit
16
+ matrix :
17
+ exclude :
18
+ - python : 2.7
19
+ env : DJANGO=2.0
20
+ - python : pypy
21
+ env : DJANGO=2.0
Original file line number Diff line number Diff line change 18
18
'Intended Audience :: System Administrators' ,
19
19
'Operating System :: OS Independent' ,
20
20
'Programming Language :: Python' ,
21
- 'Programming Language :: Python :: 2.6' ,
22
21
'Programming Language :: Python :: 2.7' ,
23
- 'Programming Language :: Python :: 3.2' ,
24
- 'Programming Language :: Python :: 3.3' ,
25
22
'Programming Language :: Python :: 3.4' ,
23
+ 'Programming Language :: Python :: 3.5' ,
24
+ 'Programming Language :: Python :: 3.6' ,
26
25
'Environment :: Web Environment' ,
27
26
'Topic :: Software Development' ,
28
27
'Topic :: Software Development :: User Interfaces' ,
Original file line number Diff line number Diff line change 14
14
'django.contrib.sites' ,
15
15
]
16
16
17
- MIDDLEWARE_CLASSES = [
17
+ MIDDLEWARE = [
18
18
'django.middleware.security.SecurityMiddleware' ,
19
19
'django.contrib.sessions.middleware.SessionMiddleware' ,
20
20
'django.middleware.common.CommonMiddleware' ,
21
21
'django.middleware.csrf.CsrfViewMiddleware' ,
22
22
'django.contrib.auth.middleware.AuthenticationMiddleware' ,
23
- 'django.contrib.auth.middleware.SessionAuthenticationMiddleware' ,
24
23
'django.contrib.messages.middleware.MessageMiddleware' ,
25
24
'django.middleware.clickjacking.XFrameOptionsMiddleware' ,
26
25
]
Original file line number Diff line number Diff line change 2
2
from django .contrib import admin
3
3
4
4
urlpatterns = [
5
- url (r'^admin/' , include ( admin .site .urls ) ),
5
+ url (r'^admin/' , admin .site .urls ),
6
6
]
You can’t perform that action at this time.
0 commit comments