Skip to content
Snippets Groups Projects
Commit baf2c4bb authored by Leonardo J. Caballero G's avatar Leonardo J. Caballero G
Browse files

Update Django version from 1.4 to 1.6.5

parent 4f6040df
No related branches found
No related tags found
No related merge requests found
...@@ -68,6 +68,9 @@ STATIC_URL = '/static/' ...@@ -68,6 +68,9 @@ STATIC_URL = '/static/'
# http://stackoverflow.com/questions/8222887/where-are-django-admin-sites-static-media-files-and-how-to-configure # http://stackoverflow.com/questions/8222887/where-are-django-admin-sites-static-media-files-and-how-to-configure
#ADMIN_MEDIA_PREFIX = '/static/admin/' #ADMIN_MEDIA_PREFIX = '/static/admin/'
# A list of strings representing the host/domain names that this Django site can serve.
ALLOWED_HOSTS = ['127.0.0.1', 'localhost']
# Additional locations of static files # Additional locations of static files
STATICFILES_DIRS = ( STATICFILES_DIRS = (
# Put strings here, like "/home/html/static" or "C:/www/django/static". # Put strings here, like "/home/html/static" or "C:/www/django/static".
......
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from django.conf.urls.defaults import * from django.conf.urls import patterns, include
from django.conf import settings from django.conf import settings
# Uncomment the next two lines to enable the admin: # Uncomment the next two lines to enable the admin:
......
...@@ -30,7 +30,7 @@ setup( ...@@ -30,7 +30,7 @@ setup(
platforms=['OS Independent'], platforms=['OS Independent'],
classifiers=CLASSIFIERS, classifiers=CLASSIFIERS,
install_requires=[ install_requires=[
'Django==1.4', 'Django==1.6.5',
], ],
packages=find_packages(exclude=["project","project.*"]), packages=find_packages(exclude=["project","project.*"]),
include_package_data=True, include_package_data=True,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment