From 1377a6c756da928df55282f95284494644626a0c Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Mon, 13 Oct 2014 12:08:36 +0100 Subject: [PATCH] Fixed pinned dependency versions These can cause real headaches if you have a different version of six or requests on your host machine. This should fix the ``pkg_resources.DistributionNotFound`` error some people have been getting with the "wagtail start" command. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index eaf2cd10d0..4d3215a1c7 100644 --- a/setup.py +++ b/setup.py @@ -39,8 +39,8 @@ install_requires = [ "beautifulsoup4>=4.3.2", "html5lib==0.999", "Unidecode>=0.04.14", - "six==1.7.3", - 'requests==2.3.0', + "six>=1.7.0", + 'requests>=2.0.0', ]