mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-03-24 18:00:29 +00: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:
parent
48cd39f740
commit
1377a6c756
1 changed files with 2 additions and 2 deletions
4
setup.py
4
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',
|
||||
]
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue