From ff1eff18d9815ffa2588034769c842615e76507d Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Fri, 21 Apr 2017 10:01:30 -0500 Subject: [PATCH] Remove direct dependency on requests keystoneauth is the library that pulls in requests. If we have client libraries also depend directly on requests, we can get into situations for end users in installations where, because of sequencing of client library releases there are conflicting versions of requests needed and pkg_resources/entrypoints break. Remove the direct depend and let keystoneauth pull it in for us. Change-Id: I76fe89f9c166e61971b5c116c7f01fbd5ccb5cf7 --- requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index fed242824..6a18a4644 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,7 +8,6 @@ oslo.i18n>=2.1.0 # Apache-2.0 oslo.serialization>=1.10.0 # Apache-2.0 oslo.utils>=3.20.0 # Apache-2.0 PrettyTable<0.8,>=0.7.1 # BSD -requests!=2.12.2,!=2.13.0,>=2.10.0 # Apache-2.0 simplejson>=2.2.0 # MIT six>=1.9.0 # MIT Babel!=2.4.0,>=2.3.4 # BSD