From 3bb7bc77b791a29e66492de3df0e71f57fa106e7 Mon Sep 17 00:00:00 2001 From: Ghanshyam Mann Date: Mon, 14 Dec 2020 19:18:33 -0600 Subject: [PATCH] Cap oslo.db==6.0.0 for python <='3.5' stackviz on stable/rocky is failing as it try to install the latest requirements like oslo.db>=4.24.0 :stderr: oslo.db requires Python '>=3.6' but the running Python is 3.5.2 https://zuul.opendev.org/t/openstack/build/67edcd21a0144bd7a3e0a28294bd5874 Change-Id: I1c65b90ee4579c0e58d9c01a1244760dc74b82b3 --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index efa25c1..2b84a87 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,6 @@ python-subunit>=0.0.18 testtools>=0.9.30 testrepository>=0.0.18 -subunit2sql>=0.8.0 +oslo.db>=6.0.0;python_version>='3.6' +oslo.db==6.0.0;python_version<='3.5' six