summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2020-11-12 18:23:11 +0100
committerChristoph Reiter <reiter.christoph@gmail.com>2020-11-12 18:23:11 +0100
commite23dc019be61c6f8a573d3880a8423690bb0e413 (patch)
treeb4fd4895f119cdc73f5d8805f56fac9b022eceff /.gitlab-ci
parentaa0bbaa548bd31933d3cbf5257d9487574e072d2 (diff)
downloadgobject-introspection-e23dc019be61c6f8a573d3880a8423690bb0e413.tar.gz
Require Python 3.6
3.5 is EOL now and we'd like to use newer typing features
Diffstat (limited to '.gitlab-ci')
-rw-r--r--.gitlab-ci/Dockerfile2
-rwxr-xr-x.gitlab-ci/run-docker.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci/Dockerfile b/.gitlab-ci/Dockerfile
index 3a579cf8..23cfc794 100644
--- a/.gitlab-ci/Dockerfile
+++ b/.gitlab-ci/Dockerfile
@@ -65,4 +65,4 @@ ENV PYENV_ROOT /home/user/.pyenv
ENV PATH="${PYENV_ROOT}/shims:${PYENV_ROOT}/bin:${PATH}"
ENV PYTHON_CONFIGURE_OPTS="--enable-shared"
RUN curl -L https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv-installer | bash
-RUN pyenv install 3.5.6
+RUN pyenv install 3.6.12
diff --git a/.gitlab-ci/run-docker.sh b/.gitlab-ci/run-docker.sh
index 8e6a04ab..ad73d3ba 100755
--- a/.gitlab-ci/run-docker.sh
+++ b/.gitlab-ci/run-docker.sh
@@ -2,7 +2,7 @@
set -e
-TAG="registry.gitlab.gnome.org/gnome/gobject-introspection:v7"
+TAG="registry.gitlab.gnome.org/gnome/gobject-introspection:v8"
sudo docker build --build-arg HOST_USER_ID="$UID" --tag "${TAG}" \
--file "Dockerfile" .