From 76e20a8ff2ab23e3997e47c999ee7c0aeeaac758 Mon Sep 17 00:00:00 2001 From: Ulysses Souza Date: Thu, 2 Jul 2020 18:04:28 +0200 Subject: [PATCH] Enforce pip3 and python3 on Release Jenkins Signed-off-by: Ulysses Souza --- Release.Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Release.Jenkinsfile b/Release.Jenkinsfile index e7a2c7c13..be3d935d9 100644 --- a/Release.Jenkinsfile +++ b/Release.Jenkinsfile @@ -201,9 +201,9 @@ pipeline { checkout scm sh """ rm -rf build/ dist/ - pip install wheel - python setup.py sdist bdist_wheel - pip install twine + pip3 install wheel + python3 setup.py sdist bdist_wheel + pip3 install twine ~/.local/bin/twine upload --config-file ${PYPIRC} ./dist/docker-compose-*.tar.gz ./dist/docker_compose-*-py2.py3-none-any.whl """ }