Skip to content

Commit

Permalink
Merge pull request #14 from odelseth/django-3-compatibility
Browse files Browse the repository at this point in the history
Django 3 compatibility

This should address #13 and #15.
  • Loading branch information
danielquinn authored Feb 27, 2020
2 parents bb7e6db + 6a4c355 commit fb715e0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion django_encrypted_filefield/constants.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os
import six
from django.conf import settings
from django.utils import six


def _get_setting(name):
Expand Down
2 changes: 1 addition & 1 deletion django_encrypted_filefield/tests/test_constants.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import six
from django.test import TestCase, override_settings
from django.utils import six
from django_encrypted_filefield.constants import _get_setting, get_bytes

try:
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ Django>=1.11
cryptography>=1.7.1
requests>=2.12.4
python-magic>=0.4.12,<0.5.0
six>=1.0.0

0 comments on commit fb715e0

Please sign in to comment.