What is the latest version of Django that comes bundled with GAE SDK?
When I downloaded the sdk, it has both 0.96 and 1.2 versions of django in lib.
When I run my application it uses 0.96 version rather than 1.2. I’m not able to use csrf middleware. Do I need to copy django 1.2 version in my app or am I missing some configuration in gae to make it use 1.2 version.
What is the latest version of Django that comes bundled with GAE SDK? When
Share
You need to add a
use_librarycall somewhere in your application, before your Django import statements to tell GAE which library you wish to use.See the Third-party Python Libraries Docs