0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-24 01:57:32 +01:00

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.
This commit is contained in:
Karl Hobley 2014-10-13 12:08:36 +01:00
parent 48cd39f740
commit 1377a6c756

View File

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