From 2682996939ff203e8ad765c2fdac8200052af836 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 23 May 2017 06:45:22 -0700 Subject: [PATCH] Constrain requests to a version (#7725) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add an optional extended description… --- homeassistant/package_constraints.txt | 2 +- requirements_all.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/package_constraints.txt b/homeassistant/package_constraints.txt index 39314f963ae..d65d9438716 100644 --- a/homeassistant/package_constraints.txt +++ b/homeassistant/package_constraints.txt @@ -1,4 +1,4 @@ -requests>=2,<3 +requests==2.14.2 pyyaml>=3.11,<4 pytz>=2017.02 pip>=7.1.0 diff --git a/requirements_all.txt b/requirements_all.txt index a577999c95d..61bb7d82d72 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -1,5 +1,5 @@ # Home Assistant core -requests>=2,<3 +requests==2.14.2 pyyaml>=3.11,<4 pytz>=2017.02 pip>=7.1.0 diff --git a/setup.py b/setup.py index 2cdcad544fb..d067a9019b3 100755 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ DOWNLOAD_URL = ('{}/archive/' PACKAGES = find_packages(exclude=['tests', 'tests.*']) REQUIRES = [ - 'requests>=2,<3', + 'requests==2.14.2', 'pyyaml>=3.11,<4', 'pytz>=2017.02', 'pip>=7.1.0',