From d1a578b555b250652ff61231f5ac1e65fe9cc711 Mon Sep 17 00:00:00 2001 From: Richard Kuesters Date: Wed, 3 Oct 2018 12:22:29 -0300 Subject: [PATCH] pinned httptools requirement to version 0.0.10+ --- environment.yml | 2 +- requirements-dev.txt | 2 +- requirements.txt | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/environment.yml b/environment.yml index 9f416c0e..e13c76fe 100644 --- a/environment.yml +++ b/environment.yml @@ -12,7 +12,7 @@ dependencies: - zlib=1.2.8=0 - pip: - uvloop>=0.5.3 - - httptools>=0.0.9 + - httptools>=0.0.10 - ujson>=1.35 - aiofiles>=0.3.0 - websockets>=3.2 diff --git a/requirements-dev.txt b/requirements-dev.txt index 004f6f9e..12b29a2b 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -3,7 +3,7 @@ aiohttp>=2.3.0,<=3.2.1 chardet<=2.3.0 beautifulsoup4 coverage -httptools +httptools>=0.0.10 flake8 pytest==3.3.2 tox diff --git a/requirements.txt b/requirements.txt index e320e781..74d9bf83 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ aiofiles -httptools +httptools>=0.0.10 ujson; sys_platform != "win32" and implementation_name == "cpython" uvloop; sys_platform != "win32" and implementation_name == "cpython" websockets>=5.0,<6.0 diff --git a/setup.py b/setup.py index 34703ab4..2ce1510f 100644 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ ujson = 'ujson>=1.35' + env_dependency uvloop = 'uvloop>=0.5.3' + env_dependency requirements = [ - 'httptools>=0.0.9', + 'httptools>=0.0.10', uvloop, ujson, 'aiofiles>=0.3.0',