Javier Daza
Python Barranquilla
¿Cuales serían tus estrategias para migrar la aplicación?
El motor de template interpreta True, False y None com sus correspondientes objetos de Python
Para mayor información ve a Django 1.5 release notes
Para mayor información ve a Django 1.6 release notes
Para mayor información ve a Django 1.7 release notes
# ANTES
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()
# AHORA
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
Para mayor información ve a Django 1.8 release notes
# ANTES
urlpatterns = patterns('',
url('^$', 'myapp.views.myview'),
)
# AHORA
from django.conf.urls import url
from myapp import views
urlpatterns = [
url('^$', views.myview),
url('^other/$', views.otherview),
]
TEMPLATE_LOADERS, TEMPLATE_CONTEXT_PROCESSORS
y TEMPLATE_DEBUG entre otras.Para mayor información ve a Django 1.9 release notes
Para mayor información ve a Django 1.10 release notes
Para mayor información ve a Django 1.11 release notes
Ver el plan de obsoletos (deprecated plan)
Ver en la documentación de tu host sugerencias sobre como hacer las migraciones.
Hacer backup de tus datos
Tener bastante paciencia