The binary (wheel) version of the package distributed through PyPI seems to be outdated even though it's marked as version 2.1.3. When I do just pip install django-redis-cache==2.1.3 and then from redis_cache import RedisCache I got cannot import name 'six' from 'django.utils which leads me to a conclusion that some version prior to 2.1.0 which brought Django 3.0 compatibility have been installed. When I install the package with the --no-binary option or through git+https://github.com/sebleier/django-redis-cache.git it works just fine.
The binary (wheel) version of the package distributed through PyPI seems to be outdated even though it's marked as version 2.1.3. When I do just
pip install django-redis-cache==2.1.3
and thenfrom redis_cache import RedisCache
I gotcannot import name 'six' from 'django.utils
which leads me to a conclusion that some version prior to2.1.0
which brought Django 3.0 compatibility have been installed. When I install the package with the--no-binary
option or throughgit+https://github.com/sebleier/django-redis-cache.git
it works just fine.