Update requirements to include oauthlib

This library is required for python-keystoneclient oauth resources
(e.g., consumers, request tokens, etc). Without this library, mistral
logs an error since keystoneauth treats the oauthlib library as an
optional dependency:

  Failed to create action: keystone.oauth1.consumers_build_url:
  NotImplementedError: To use 'consumers' oauthlib must be installed

This commit adds the oauthlib package to requirements.txt so that
mistral doesn't log ERRRORs building the action map.

Change-Id: Ib172dd8fb122696072c38e9c78e0e07b5e38f222
This commit is contained in:
Lance Bragstad 2020-06-15 15:41:28 -05:00 committed by Lance Bragstad
parent 3003917871
commit 1bc1d1fa69
1 changed files with 1 additions and 0 deletions

View File

@ -17,6 +17,7 @@ kombu!=4.0.2,>=4.6.1 # BSD
mistral-lib>=1.2.0 # Apache-2.0
networkx<2.3,>=1.10;python_version<'3.0' # BSD
networkx>=2.3;python_version>='3.4' # BSD
oauthlib>=0.6.2 # BSD
oslo.concurrency>=3.26.0 # Apache-2.0
oslo.config>=5.2.0 # Apache-2.0
oslo.context>=2.20.0 # Apache-2.0