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.
pull/697/head
Karl Hobley 2014-10-13 12:08:36 +01:00
rodzic 48cd39f740
commit 1377a6c756
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -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',
]