From 97ebe5c3e3cab361c4603091fa0e0aadce7cc610 Mon Sep 17 00:00:00 2001 From: Quentin Lux Date: Wed, 4 Nov 2020 09:49:45 -0500 Subject: [PATCH] return to python 2 --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4523bfb..4fa8eaa 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,7 +12,7 @@ tox: package: stage: build - image: "python:3.6" + image: "python:2.7" only: refs: - master @@ -22,8 +22,8 @@ package: before_script: - pip install twine script: - - python3 setup.py sdist bdist_wheel - - python3 -m twine upload dist/* + - python setup.py sdist bdist_wheel + - python -m twine upload dist/* # Production has to be triggered manually update_login_nodes: