Skip to content

Commit 87bd4c1

Browse files
authoredJan 20, 2020
Merge pull request #1710 from MrKioZ/master
Fix for issue #1697 Django 3.0
·
v3.3.0v3.0b1
2 parents 2e6c4a9 + e1b4f5a commit 87bd4c1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎haystack/utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
from __future__ import unicode_literals
44

55
import importlib
6+
import six
67
import re
78

89
from django.conf import settings
9-
from django.utils import six
1010

1111
from haystack.constants import ID, DJANGO_CT, DJANGO_ID
1212
from haystack.utils.highlighting import Highlighter

‎setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from setuptools import setup
55

6-
install_requires = ["Django>=1.11"]
6+
install_requires = ["Django>=1.11", "six"]
77

88
tests_require = [
99
"pysolr>=3.7.0",

0 commit comments

Comments
 (0)
Please sign in to comment.