From ea49a01d85cb2fccc5fe34f3d0e042dc1deaf8e8 Mon Sep 17 00:00:00 2001 From: Usman Khalid <2200617@gmail.com> Date: Mon, 26 Oct 2015 18:22:30 +0500 Subject: [PATCH 1/3] Removed unique=True from UserOpenID.claimed_id --- django_openid_auth/migrations/0001_initial.py | 2 +- django_openid_auth/models.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/django_openid_auth/migrations/0001_initial.py b/django_openid_auth/migrations/0001_initial.py index c8bb23c..244cec0 100644 --- a/django_openid_auth/migrations/0001_initial.py +++ b/django_openid_auth/migrations/0001_initial.py @@ -43,7 +43,7 @@ class Migration(migrations.Migration): name='UserOpenID', fields=[ ('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)), ('user', models.ForeignKey(to=settings.AUTH_USER_MODEL)), ], diff --git a/django_openid_auth/models.py b/django_openid_auth/models.py index ca6b0f3..30224e2 100644 --- a/django_openid_auth/models.py +++ b/django_openid_auth/models.py @@ -57,7 +57,7 @@ def __unicode__(self): class UserOpenID(models.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) class Meta: From 032b662dadc10c311321480126f5f3c8fc4a3938 Mon Sep 17 00:00:00 2001 From: Usman Khalid <2200617@gmail.com> Date: Tue, 27 Oct 2015 15:33:42 +0500 Subject: [PATCH 2/3] Remove South from install_requires. --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 60b4160..113aa64 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,6 @@ install_requires=[ 'django>=1.5', 'python-openid>=2.2.0', - 'south', ], package_data={ 'django_openid_auth': ['templates/openid/*.html'], From dbf4c9b7fcbb000ec21bb30ea39a69c1907bcb12 Mon Sep 17 00:00:00 2001 From: muhammad-ammar Date: Thu, 5 Nov 2015 15:10:35 +0500 Subject: [PATCH 3/3] bump library version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 113aa64..ebc2e24 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ description, long_description = __doc__.split('\n\n', 1) -VERSION = '0.7' +VERSION = '0.8' setup( name='django-openid-auth',