Skip to content

Commit ba946a7

Browse files
author
Andrey Fedoseev
committed
Require six>=1.4.0
Fix #18
1 parent 3567812 commit ba946a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def read(fname):
3535
],
3636
keywords=["sass", "scss", "less", "css", "coffeescript", "javascript"],
3737
requires=[
38-
"six",
38+
"six(>=1.4.0)",
3939
],
4040
tests_require=[
4141
"mock",

static_precompiler/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from django.utils.encoding import smart_str, smart_bytes
55
from django.utils.importlib import import_module
66
# noinspection PyUnresolvedReferences
7-
from six.moves.urllib import parse as urllib_parse
7+
from six.moves import urllib_parse
88
from static_precompiler.exceptions import UnsupportedFile
99
from static_precompiler.settings import MTIME_DELAY, POSIX_COMPATIBLE, COMPILERS, \
1010
STATIC_URL, CACHE_NAME

0 commit comments

Comments
 (0)