From 3b264a919a578fdb691ff5c82349dcb7ac30d570 Mon Sep 17 00:00:00 2001 From: Eduardo Gonzalez Date: Fri, 14 Sep 2018 16:50:19 +0200 Subject: [PATCH] Ingore monasca-thresh in version-check.py monasca-thresh package is not published in tarballs.openstack.org and fails to detect proper version for it. Add to external managed packages list Change-Id: I5da4da1f5291e993fdcd04177c634147204ad9ed --- tools/version-check.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/version-check.py b/tools/version-check.py index abeacc8d96..ce6d1ff725 100755 --- a/tools/version-check.py +++ b/tools/version-check.py @@ -47,7 +47,8 @@ SKIP_PROJECTS = { ' openstack/releases project'), 'nova-spicehtml5proxy': ('nova-spicehtml5proxy is not managed' ' by openstack/releases project'), - 'openstack-base': 'There is no tag for requirements project' + 'openstack-base': 'There is no tag for requirements project', + 'monasca-thresh': 'Package not published in tarballs.openstack.org' } RE_DEFAULT_BRANCH = re.compile('^defaultbranch=stable/(.*)')