From a2174027ca24d6a1f81fa7cfdb126f7875a3424d Mon Sep 17 00:00:00 2001
From: Grzegorz Kostkowski <grzegorz.kostkowski@pwr.edu.pl>
Date: Thu, 11 Mar 2021 13:30:44 +0100
Subject: [PATCH] Force using version 3.6 of python because of inconsistent
 python symlinks

---
 .gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index dc925e1..93d0731 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -23,14 +23,14 @@ stages:
 
 push_wheel:
   before_script:
-   - pip install twine
+   - pip3.6 install twine
   only:
    - master
   stage: push_wheel
   when: on_success
   script:
-   - python setup.py sdist bdist_wheel
-   - python -m twine upload 
+   - python3.6 setup.py sdist bdist_wheel
+   - python3.6 -m twine upload 
      --repository-url https://pypi.clarin-pl.eu/
      -u $PIPY_USER -p $PIPY_PASS dist/cclutils*.whl
 
-- 
GitLab