Damien Hou wrote:
> To name one, the use of newforms is deprecated in favor of simply forms,
> and in the latest beta releases newforms have been removed. I'm using a
> django 1.0 alpha version with one of my apps and I see django raising
> errors about GAE code still using the deprecated newforms.
>
> I haven't tried 1.0 beta on GAE yet. But plan to try the 1.0 final code
> and see if there's any compatibility problems. But the best thing would
> be that GAE by default supports the 1.0 final release and upgrade from
> the current outdated 0.96 release
You'll need to use the latest SVN head revision of the helper if you are
testing Django 1.0. We are actively watching its release progress and
updating the helper accordingly as fast as possible.
I've just committed (in r58) a patch from issue #78 which fixes the
latest round of bugs introduced from the release of beta 2 so the
current SVN head should work fine with Django 1.0beta2.
There are still some test failures being printed, as the
django.contrib.auth application tests are being run when they are not
valid for the App Engine Helper environment. I attempted to disable
these tests in r51, but the beta2 has re-enabled them somehow. I'll take
another look at getting these disabled correctly later tonight. For now
you can either ignore them (the only affect you if you run manage.py
test) or you can remove django.contrib.auth from your INSTALLED_APPS
list if you are not using it.
Cheers
Matt