Skip to content

Commit

Permalink
Made cleanups after removing Python 2 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixxm authored and davesque committed Feb 24, 2019
1 parent 95e1058 commit 03656ce
Show file tree
Hide file tree
Showing 11 changed files with 3 additions and 36 deletions.
2 changes: 0 additions & 2 deletions rest_framework_simplejwt/token_blacklist/admin.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from __future__ import unicode_literals

from django.contrib import admin
from django.utils.translation import ugettext_lazy as _

Expand Down
2 changes: 0 additions & 2 deletions rest_framework_simplejwt/token_blacklist/apps.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from __future__ import unicode_literals

from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.2 on 2017-06-26 01:12
from __future__ import unicode_literals

import django.db.models.deletion
from django.conf import settings
from django.db import migrations, models
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.2 on 2017-10-17 20:06
from __future__ import unicode_literals

from django.db import migrations, models


Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.2 on 2017-10-17 20:07
from __future__ import unicode_literals

from uuid import UUID

from django.db import migrations
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.2 on 2017-10-17 20:13
from __future__ import unicode_literals

from django.db import migrations, models


Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.2 on 2017-10-17 21:13
from __future__ import unicode_literals

from django.db import migrations


Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.2 on 2017-10-17 21:13
from __future__ import unicode_literals

from django.db import migrations


Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.2 on 2017-10-17 22:14
from __future__ import unicode_literals

import django.db.models.deletion
from django.conf import settings
from django.db import migrations, models
Expand Down
2 changes: 0 additions & 2 deletions rest_framework_simplejwt/token_blacklist/models.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from __future__ import unicode_literals

from django.conf import settings
from django.db import models

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import (
setup,
find_packages,
Expand Down Expand Up @@ -68,8 +67,10 @@
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP',
]
)

0 comments on commit 03656ce

Please sign in to comment.