Now that Google App Engine natively supports Django 1.0, I updated with the following code:
from google.appengine.dist import use_library
use_library('django', '1.0')
I am now getting template errors relating to template inheritance.
For instance, if I have:
{% extends "../base.html" %}
Referring to a base.html in the parent directory, this worked as expected in Django 0.96, but Django 1.0 is unable to find the referenced template.
The Django docs (http://docs.djangoproject.com/en/dev/topics/templates/#template-inheritance) don't mention any difference between versions....