From 8b3f27b22a85ecb447153b8270b794971c96d721 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Tue, 15 Mar 2022 15:06:04 +0000 Subject: [PATCH] Update CI to use unversioned jobs template As part of the migration of this project to the independent release model, we failed to notice that the job template was still tied to a specific release. We've now introduced a new unversioned job template, 'openstack-python3-jobs' [1], which was can and should use. Do this. [1] https://review.opendev.org/c/openstack/openstack-zuul-jobs/+/833286/ NOTE: This adds six to requirements to make that required library installed. This will be removed later when we get rid of usage of the six library. Depends-On: https://review.opendev.org/c/openstack/openstack-zuul-jobs/+/833286/ Signed-off-by: Stephen Finucane Change-Id: I906db4eeb673b667667f9706e0084fe441769e84 --- .zuul.yaml | 2 +- requirements.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.zuul.yaml b/.zuul.yaml index c09f07d..ed33418 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -2,5 +2,5 @@ - project: templates: - check-requirements - - openstack-python3-wallaby-jobs + - openstack-python3-jobs - release-notes-jobs-python3 diff --git a/requirements.txt b/requirements.txt index 9f5f7d3..259254f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ python-ldap>=3.0.0 # PSF PrettyTable>=0.7.2 +six>=1.10.0 # MIT