From 76270c8383ba8109a60e185af9e92ebbb1a69862 Mon Sep 17 00:00:00 2001 From: Ghanshyam Mann Date: Fri, 12 Feb 2021 11:15:09 -0600 Subject: [PATCH] Fix gate requirement checks job Current requirements-check job is failing with below error: ERROR: Requirement for package PrettyTable excludes a version not excluded in the global list. Local settings : {'<0.8'} Global settings: set() Unexpected : set() Validating test-requirements.txt Keeping PrettyTable same as what we have in openstack/requirements repo Change-Id: I63633d2932757ca23bcea69fd655a2499a5b6d31 --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 122a2f708..46235be99 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -# The order of packages is significant, because pip processes them in the order +# The order of packages is significant, because pip processes them in the order # of appearance. Changing the order has an impact on the overall integration # process, which may cause wedges in the gate later. @@ -28,7 +28,7 @@ oslo.versionedobjects>=1.32.0 # Apache-2.0 PasteDeploy>=1.5.2 # MIT pbr>=3.1.1 # Apache-2.0 pecan>=1.3.2 # BSD -PrettyTable<0.8,>=0.7.2 # BSD +PrettyTable>=0.7.2 # BSD gnocchiclient>=7.0.1 # Apache-2.0 python-ceilometerclient>=2.9.0 # Apache-2.0 python-cinderclient>=3.5.0 # Apache-2.0