Skip to content
This repository has been archived by the owner on May 30, 2019. It is now read-only.

Commit

Permalink
Merge pull request #2 from edx/django1.8-upgrade
Browse files Browse the repository at this point in the history
Django1.8 upgrade
  • Loading branch information
symbolist committed Nov 24, 2015
2 parents 5cb37e8 + dbf4c9b commit cf6ba43
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion django_openid_auth/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)),
],
Expand Down
2 changes: 1 addition & 1 deletion django_openid_auth/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@


description, long_description = __doc__.split('\n\n', 1)
VERSION = '0.7'
VERSION = '0.8'

setup(
name='django-openid-auth',
Expand All @@ -53,7 +53,6 @@
install_requires=[
'django>=1.5',
'python-openid>=2.2.0',
'south',
],
package_data={
'django_openid_auth': ['templates/openid/*.html'],
Expand Down

0 comments on commit cf6ba43

Please sign in to comment.