Re: django.core.checks.register shouldn't be (primarily) a decorator

2014-01-23 Thread Marc Tamlyn
Assuming my change to ready() does happen, I think we should also document using it in the checks documentation. Marc On 23 January 2014 00:37, Russell Keith-Magee wrote: > > On Thu, Jan 23, 2014 at 8:29 AM, Shai Berger wrote: > >> Hi, >> >> I took

Re: Recommending a Python 3-compatible MySQL connector

2014-01-23 Thread Daniel Sears
I want to follow up on the issue of a Python 3 connector for MySQL. Oracle has developed an open source Python driver for MySQL : - PEP 249-compliant - pure Python - supports Python 3 - very simple installation: pip

Re: Recommending a Python 3-compatible MySQL connector

2014-01-23 Thread Russell Keith-Magee
On Thu, Jan 23, 2014 at 2:51 PM, Daniel Sears wrote: > I want to follow up on the issue of a Python 3 connector for MySQL. > > Oracle has developed an open source Python driver for > MySQL > : > > >- PEP

Re: Recommending a Python 3-compatible MySQL connector

2014-01-23 Thread Aymeric Augustin
2014/1/23 Daniel Sears > I know the core issue of GPL remains. But since this discussion began > Oracle has extended their driver to include their own > Django >

Django sprint in Amsterdam, The Netherlands, Feb 22/23

2014-01-23 Thread Erik Romijn
Hello all, I’m very happy to announce that a two-day Django sprint will take place on February 22-23 in Amsterdam, Netherlands. This event is organized by the Dutch Django Association. Sign up and more information on: http://www.meetup.com/dutch-django-assocation/events/155766972/ The venue

1.7 Schema migrations and AUTH_PROFILE_MODULE / get_profile() deprecation

2014-01-23 Thread Brian Neal
Hello, The deprecation timeline says this about Django 1.7: "The AUTH_PROFILE_MODULE setting, and the get_profile() method on the User model, will be removed." The dev 1.7 release notes say that the new schema migration is scheduled to land in 1.7. Does this mean we cannot use the new schema

Re: 1.7 Schema migrations and AUTH_PROFILE_MODULE / get_profile() deprecation

2014-01-23 Thread Russell Keith-Magee
On Fri, Jan 24, 2014 at 9:05 AM, Brian Neal wrote: > Hello, > > The deprecation timeline says this about Django 1.7: > > "The AUTH_PROFILE_MODULE setting, and the get_profile() method on the > User model, will be removed." > > The dev 1.7 release notes say that the new schema

Re: 1.7 Schema migrations and AUTH_PROFILE_MODULE / get_profile() deprecation

2014-01-23 Thread Ryan Hiebert
On Thu, Jan 23, 2014 at 7:24 PM, Russell Keith-Magee < russ...@keith-magee.com> wrote: > > On Fri, Jan 24, 2014 at 9:05 AM, Brian Neal wrote: > >> Hello, >> >> The deprecation timeline says this about Django 1.7: >> >> "The AUTH_PROFILE_MODULE setting, and the get_profile()

Re: 1.7 Schema migrations and AUTH_PROFILE_MODULE / get_profile() deprecation

2014-01-23 Thread Russell Keith-Magee
On Fri, Jan 24, 2014 at 9:33 AM, Ryan Hiebert wrote: > > > > On Thu, Jan 23, 2014 at 7:24 PM, Russell Keith-Magee < > russ...@keith-magee.com> wrote: > >> >> On Fri, Jan 24, 2014 at 9:05 AM, Brian Neal wrote: >> >>> Hello, >>> >>> The deprecation timeline

Re: 1.7 Schema migrations and AUTH_PROFILE_MODULE / get_profile() deprecation

2014-01-23 Thread Ryan Hiebert
On Thu, Jan 23, 2014 at 7:42 PM, Russell Keith-Magee < russ...@keith-magee.com> wrote: > > > On Fri, Jan 24, 2014 at 9:33 AM, Ryan Hiebert wrote: > >> >> >> >> On Thu, Jan 23, 2014 at 7:24 PM, Russell Keith-Magee < >> russ...@keith-magee.com> wrote: >> >>> >>> On Fri, Jan

Re: 1.7 Schema migrations and AUTH_PROFILE_MODULE / get_profile() deprecation

2014-01-23 Thread Russell Keith-Magee
On Fri, Jan 24, 2014 at 12:07 PM, Ryan Hiebert wrote: > > > On Thu, Jan 23, 2014 at 7:42 PM, Russell Keith-Magee < > russ...@keith-magee.com> wrote: > >> >> >> On Fri, Jan 24, 2014 at 9:33 AM, Ryan Hiebert wrote: >> >>> >>> >>> >>> On Thu, Jan 23, 2014

Re: 1.7 Schema migrations and AUTH_PROFILE_MODULE / get_profile() deprecation

2014-01-23 Thread Josh Smeaton
Sorry to jump in here, please ignore me if I make no sense. Allowing one more release before AUTH_PROFILE_MODULE is removed would allow > him to use the new migration system to create a custom migration to migrate > away from using the profiles. Otherwise, he'd need to use South or go >

Re: 1.7 Schema migrations and AUTH_PROFILE_MODULE / get_profile() deprecation

2014-01-23 Thread Carl Meyer
Hi Ryan, On 01/23/2014 09:50 PM, Ryan Hiebert wrote: > Assuming that the changes from the deprecation policy are in trunk now > that the alpha has landed, any use of the AUTH_PROFILE_MODULE must be > eliminated _before_ moving to 1.7, since they are not just deprecated, > but _removed_ in 1.7.

Re: 1.7 Schema migrations and AUTH_PROFILE_MODULE / get_profile() deprecation

2014-01-23 Thread Loic Bistuer
If you look at the following example: https://docs.djangoproject.com/en/1.4/topics/auth/#storing-additional-information-about-users With `AUTH_PROFILE_MODULE = ’accounts.UserProfile’`: 'accounts' is a standard application that you add to your INSTALLED_APPS setting, and just like any other