Skip to content

Commit cf6ba43

Browse files
committed
Merge pull request edx#2 from edx/django1.8-upgrade
Django1.8 upgrade
2 parents 5cb37e8 + dbf4c9b commit cf6ba43

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

django_openid_auth/migrations/0001_initial.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class Migration(migrations.Migration):
4343
name='UserOpenID',
4444
fields=[
4545
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
46-
('claimed_id', models.TextField(unique=True, max_length=2047)),
46+
('claimed_id', models.TextField(max_length=2047)),
4747
('display_id', models.TextField(max_length=2047)),
4848
('user', models.ForeignKey(to=settings.AUTH_USER_MODEL)),
4949
],

django_openid_auth/models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def __unicode__(self):
5757

5858
class UserOpenID(models.Model):
5959
user = models.ForeignKey(settings.AUTH_USER_MODEL)
60-
claimed_id = models.TextField(max_length=2047, unique=True)
60+
claimed_id = models.TextField(max_length=2047)
6161
display_id = models.TextField(max_length=2047)
6262

6363
class Meta:

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343

4444

4545
description, long_description = __doc__.split('\n\n', 1)
46-
VERSION = '0.7'
46+
VERSION = '0.8'
4747

4848
setup(
4949
name='django-openid-auth',
@@ -53,7 +53,6 @@
5353
install_requires=[
5454
'django>=1.5',
5555
'python-openid>=2.2.0',
56-
'south',
5756
],
5857
package_data={
5958
'django_openid_auth': ['templates/openid/*.html'],

0 commit comments

Comments
 (0)