From cf8f068507fb5af77e6e429dbce6097ff3ba65d9 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Mon, 11 Jun 2018 15:37:32 -0400 Subject: [PATCH] support projects that use the python3 variation of the pypi job During the transition phase projects may use either the python2 (default) or python3 version of the pypi publshing jobs. Change-Id: I2759696347f2226499b4a8b3ee7dfa0d2c06c310 Signed-off-by: Doug Hellmann --- openstack_releases/project_config.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/openstack_releases/project_config.py b/openstack_releases/project_config.py index 9ce525348b..32f266fce7 100644 --- a/openstack_releases/project_config.py +++ b/openstack_releases/project_config.py @@ -87,15 +87,19 @@ _RELEASE_JOBS_FOR_TYPE = { 'python-service': [ 'release-openstack-server', 'publish-to-pypi', + 'publish-to-pypi-python3', ], 'python-pypi': [ 'publish-to-pypi', + 'publish-to-pypi-python3', ], 'neutron': [ 'publish-to-pypi-neutron', + 'publish-to-pypi-neutron-python3', ], 'horizon': [ 'publish-to-pypi-horizon', + 'publish-to-pypi-horizon-python3', ], 'nodejs': [ 'nodejs4-publish-to-npm',