Skip to content

Commit f5dc6e4

Browse files
committed
Merge pull request sclorg#40 from PI-Victor/pi-victor/upgrade_django_vers
bump django version
2 parents c0f9b0a + 560365b commit f5dc6e4

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

project/urls.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
from django.conf.urls import include, url
22
from django.contrib import admin
33

4+
from welcome.views import index, health
5+
46
urlpatterns = [
57
# Examples:
68
# url(r'^$', 'project.views.home', name='home'),
79
# url(r'^blog/', include('blog.urls')),
810

9-
url(r'^$', 'welcome.views.index'),
10-
url(r'^health$', 'welcome.views.health'),
11+
url(r'^$', index),
12+
url(r'^health$', health),
1113
url(r'^admin/', include(admin.site.urls)),
1214
]

requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Django==1.8.1
2-
psycopg2==2.6
3-
gunicorn==19.3.0
4-
whitenoise==1.0.6
5-
django-debug-toolbar==1.3.0
1+
Django==1.9.5
2+
django-debug-toolbar==1.4
3+
gunicorn==19.4.5
4+
psycopg2==2.6.1
5+
whitenoise==3.0

0 commit comments

Comments
 (0)