Pin yarl version to 0.18.* in setup.py

- We need to pin this dependency because version 1.0.0 of yarl
  does not expose `unquote` and if we do not pin it, the latest
  version >=1.*.* is downloaded and `aiohttp` expects it.
- This can also be fixed on `aiohttp`, but meanwhile :)
This commit is contained in:
muawiakh 2018-01-15 17:33:54 +01:00 committed by Sylvain Bellemare
parent f817818770
commit ab9e1f71c7
1 changed files with 1 additions and 0 deletions

View File

@ -83,6 +83,7 @@ install_requires = [
'aiohttp~=2.0',
'python-rapidjson-schema==0.1.1',
'statsd==3.2.1',
'yarl>=0.11,<1.0',
]
setup(