django-redis-cache
django-redis-cache copied to clipboard
Regression cannot import name 'six'
File "/home/vagrant/.tox/py36/lib/python3.6/site-packages/redis_cache/utils.py", line 5, in <module>
from django.utils import six
ImportError: cannot import name 'six'
Pip freeze shows:
django-redis-cache==2.1.3
Noticed someone else mentioned it here: https://github.com/sebleier/django-redis-cache/issues/173#issuecomment-701633501
I pinned to django-redis-cache==2.1.0
in my constraints and the issue went away
I too had to pin to django-redis-cache==2.1.1
. The 2.1.3
has the ImportError
described
Seems to be this issue i've just opened: https://github.com/sebleier/django-redis-cache/issues/196
Installing with the --no-binary
option or through git reference (pip install git+https://github.com/sebleier/django-redis-cache.git
) is a good workaround.