From 8ab2fbcccd113cd59cbbce027b3cf3c58fe82c4f Mon Sep 17 00:00:00 2001 From: jpic Date: Wed, 22 Apr 2020 03:04:14 +0200 Subject: [PATCH] Pip for python 3.8 --- .gitlab-ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 51e8afe..6640159 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,9 +2,12 @@ build: cache: key: cache paths: [.cache] - image: yourlabs/python + image: quay.io/buildah/stable script: - - pip install -U --user -e .[cli] + - dnf install -y curl python38 + - curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py + - python3.8 get-pip.py + - pip3.8 install -U --user -e .[cli] - CACHE_DIR=$(pwd)/.cache ~/.local/bin/shlax ./shlaxfile.py build stage: build