diff --git a/docs/reference/contrib/staticsitegen.rst b/docs/reference/contrib/staticsitegen.rst index 20f0ec813f..2c9fefcbb6 100644 --- a/docs/reference/contrib/staticsitegen.rst +++ b/docs/reference/contrib/staticsitegen.rst @@ -10,11 +10,11 @@ This document describes how to render your Wagtail site into static HTML files o Installing ``django-medusa`` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -First, install ``django-medusa`` from pip: +First, install ``django-medusa`` and ``django-sendfile`` from pip: .. code:: - pip install django-medusa + pip install django-medusa django-sendfile Then add ``django_medusa`` and ``wagtail.contrib.wagtailmedusa`` to ``INSTALLED_APPS``: diff --git a/setup.py b/setup.py index 7fab90b0f7..94ba3f5dc7 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,6 @@ install_requires = [ "django-modelcluster>=0.6", "django-taggit>=0.13.0", "django-treebeard==3.0", - "django-sendfile==0.3.7", "Pillow>=2.6.1", "beautifulsoup4>=4.3.2", "html5lib==0.999",