From 8c75baa27108a931fd6e25384679c734854ba923 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Mon, 1 Jun 2015 16:49:12 +0100 Subject: [PATCH] Removed sendfile dependency Not actually needed unless you're setting a SENDFILE_BACKEND and in that case, you'll know you need it. --- docs/reference/contrib/staticsitegen.rst | 4 ++-- setup.py | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) 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",