[web2py] Re: Web2py uses Django... on GAE

2011-07-13 Thread howesc
opened as ticket 337.  i got far enough to even link to the google 
documentation on this, didn't get to testing it out though.


Re: [web2py] Re: Web2py uses Django... on GAE

2011-07-13 Thread Jonathan Lundell
On Jul 12, 2011, at 11:40 PM, Massimo Di Pierro wrote:
> 
> This is a GAE bug and we should open a ticket. GAE should not issue
> warning about libraries we do not use and we should not reference
> libraries we do not use to make the warnings go away. Do you want to
> file the bug report? I not, I will do it.

There's some commonly used generic library that's included with the Django 
installation that some (many?) non-Django Python apps link to on GAE. I 
remember reading about it a few months ago, and even running into that message. 

But I don't remember the details, and I can't google them up right now.

> 
> On Jul 12, 7:45 pm, howesc  wrote:
>> this warning popped up recently when GAE started bundling 2 versions of
>> django.  by default it still uses the old version of django in case you
>> needed it for your project.  there is a flag somewhere that can be set to
>> tell GAE to use the new version of django.  i assume we could find and set
>> the flag even though we use none of the django code.




[web2py] Re: Web2py uses Django... on GAE

2011-07-12 Thread Massimo Di Pierro
This is a GAE bug and we should open a ticket. GAE should not issue
warning about libraries we do not use and we should not reference
libraries we do not use to make the warnings go away. Do you want to
file the bug report? I not, I will do it.

On Jul 12, 7:45 pm, howesc  wrote:
> this warning popped up recently when GAE started bundling 2 versions of
> django.  by default it still uses the old version of django in case you
> needed it for your project.  there is a flag somewhere that can be set to
> tell GAE to use the new version of django.  i assume we could find and set
> the flag even though we use none of the django code.


[web2py] Re: Web2py uses Django... on GAE

2011-07-12 Thread howesc
this warning popped up recently when GAE started bundling 2 versions of 
django.  by default it still uses the old version of django in case you 
needed it for your project.  there is a flag somewhere that can be set to 
tell GAE to use the new version of django.  i assume we could find and set 
the flag even though we use none of the django code.


[web2py] Re: Web2py uses Django... on GAE

2011-07-12 Thread Massimo Di Pierro
Definitively web2py does not uses Django.
GAE includes some Django libraries which we do not import but it is
possible that GAE does. Are you getting this error with dev_appserver
or in production?

Massimo


On Jul 12, 4:09 pm, Carl  wrote:
> In looking at my log output on AppEngine I am getting this Warning:
> You are using the default Django version (0.96). The default Django
> version will change in an App Engine release in the near future.
> Please call use_library() to explicitly select a Django version. For
> more information 
> seehttp://code.google.com/appengine/docs/python/tools/libraries.html#Django
>
> Can anyone spread any light on this?