when you use git clone and then run pip install -r requirements.txt, six is available as a dependency of one of the packages, but when you do a pip install django-river (or in my case pipenv install django-river) and include river in the INSTALLED_APPS; upon running the server you'll see an error related to six not being available.
when you use
git clone
and then runpip install -r requirements.txt
, six is available as a dependency of one of the packages, but when you do apip install django-river
(or in my casepipenv install django-river
) and includeriver
in theINSTALLED_APPS
; upon running the server you'll see an error related tosix
not being available.This PR fixes that.