-
Notifications
You must be signed in to change notification settings - Fork 197
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove dependency on contrib.sites #15
Comments
After Django 1.9 is out, the plan is to publish the last release with Django 1.6 support, then we can start leveraging the migrations framework and work on this issue. |
1.6.2 has been released today. We can now drop Django 1.6 and start counting on the migration system to go forward. |
Do you want to completely drop dependency on SITE, or make it optional? |
Dropping sites support means you can't use the app in a multisite system. I would just softcode it to check whether django.contrib.sites is installed and adjust the queries accordingly. |
This shouldn't be too hard to do. For example, calls to Are the devs open to a PR related to this? |
If you think your proposal will be able to cope with backwards compatibility, then sure! |
I would use this and help support it if it didn't have the not-null models.ForeignKey('sites.Site').
Similar to https://code.djangoproject.com/ticket/21381
The text was updated successfully, but these errors were encountered: