You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 text was updated successfully, but these errors were encountered:
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.The text was updated successfully, but these errors were encountered: