Commit cf6ba431 by Usman Khalid

Merge pull request #2 from edx/django1.8-upgrade

Django1.8 upgrade
parents 5cb37e85 dbf4c9b7
...@@ -43,7 +43,7 @@ class Migration(migrations.Migration): ...@@ -43,7 +43,7 @@ class Migration(migrations.Migration):
name='UserOpenID', name='UserOpenID',
fields=[ fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)), ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('claimed_id', models.TextField(unique=True, max_length=2047)), ('claimed_id', models.TextField(max_length=2047)),
('display_id', models.TextField(max_length=2047)), ('display_id', models.TextField(max_length=2047)),
('user', models.ForeignKey(to=settings.AUTH_USER_MODEL)), ('user', models.ForeignKey(to=settings.AUTH_USER_MODEL)),
], ],
......
...@@ -57,7 +57,7 @@ class Association(models.Model): ...@@ -57,7 +57,7 @@ class Association(models.Model):
class UserOpenID(models.Model): class UserOpenID(models.Model):
user = models.ForeignKey(settings.AUTH_USER_MODEL) user = models.ForeignKey(settings.AUTH_USER_MODEL)
claimed_id = models.TextField(max_length=2047, unique=True) claimed_id = models.TextField(max_length=2047)
display_id = models.TextField(max_length=2047) display_id = models.TextField(max_length=2047)
class Meta: class Meta:
......
...@@ -43,7 +43,7 @@ from setuptools import find_packages, setup ...@@ -43,7 +43,7 @@ from setuptools import find_packages, setup
description, long_description = __doc__.split('\n\n', 1) description, long_description = __doc__.split('\n\n', 1)
VERSION = '0.7' VERSION = '0.8'
setup( setup(
name='django-openid-auth', name='django-openid-auth',
...@@ -53,7 +53,6 @@ setup( ...@@ -53,7 +53,6 @@ setup(
install_requires=[ install_requires=[
'django>=1.5', 'django>=1.5',
'python-openid>=2.2.0', 'python-openid>=2.2.0',
'south',
], ],
package_data={ package_data={
'django_openid_auth': ['templates/openid/*.html'], 'django_openid_auth': ['templates/openid/*.html'],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment