Skip to content

Commit

Permalink
Merge pull request #1 from pifantastic/aaron-remove-future-dependency
Browse files Browse the repository at this point in the history
Remove dependency on future.
  • Loading branch information
pifantastic committed Jan 10, 2023
2 parents 8283d19 + 014b48a commit ace7850
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion manage.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import unicode_literals, absolute_import

import os
import sys
Expand Down
1 change: 0 additions & 1 deletion runtests.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8
from __future__ import unicode_literals, absolute_import

import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def get_version(*file_paths):
'django_json_widget',
],
include_package_data=True,
install_requires=['future'], # Only required for Django < 3.1
install_requires=[],
license="MIT",
zip_safe=False,
keywords='django-json-widget',
Expand Down
1 change: 0 additions & 1 deletion tests/settings.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# -*- coding: utf-8
from __future__ import unicode_literals, absolute_import

import django

Expand Down

0 comments on commit ace7850

Please sign in to comment.