Skip to content

Commit

Permalink
Added support for django 2.0 in setup.py, version bumped to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
anx-ckreuzberger committed Oct 9, 2017
1 parent b113e21 commit 4c51496
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion django_rest_multitokenauth/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Migration(migrations.Migration):
('created', models.DateTimeField(verbose_name='Created', auto_now_add=True)),
('last_known_IP', models.GenericIPAddressField(default='127.0.0.1', verbose_name='The IP address of this session')),
('user_agent', models.CharField(default='', max_length=256, verbose_name='HTTP User Agent')),
('user', models.ForeignKey(related_name='auth_tokens', verbose_name='User', to=settings.AUTH_USER_MODEL)),
('user', models.ForeignKey(related_name='auth_tokens', verbose_name='User', to=settings.AUTH_USER_MODEL, on_delete=models.CASCADE)),
],
options={
'verbose_name_plural': 'Tokens',
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Django==1.10.*
djangorestframework=3.6.*
Django==1.11.*
djangorestframework==3.7.*
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name='django-rest-multitokenauth',
version='1.1.1',
version='1.2.0',
packages=find_packages(),
include_package_data=True,
license='BSD License',
Expand All @@ -20,12 +20,14 @@
author='Christian Kreuzberger',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
Expand Down

0 comments on commit 4c51496

Please sign in to comment.