diff options
author | Christoph Reiter <reiter.christoph@gmail.com> | 2020-11-12 18:23:11 +0100 |
---|---|---|
committer | Christoph Reiter <reiter.christoph@gmail.com> | 2020-11-12 18:23:11 +0100 |
commit | e23dc019be61c6f8a573d3880a8423690bb0e413 (patch) | |
tree | b4fd4895f119cdc73f5d8805f56fac9b022eceff /.gitlab-ci.yml | |
parent | aa0bbaa548bd31933d3cbf5257d9487574e072d2 (diff) | |
download | gobject-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.yml')
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2d79aa1d..55c320c9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,7 @@ stages: - build - deploy -image: registry.gitlab.gnome.org/gnome/gobject-introspection:v7 +image: registry.gitlab.gnome.org/gnome/gobject-introspection:v8 cache: paths: @@ -88,12 +88,12 @@ fedora-x86_64-subprojects: - "${CI_PROJECT_DIR}/_build/meson-logs" - public -fedora-x86_64-python3.5: +fedora-x86_64-python3.6: stage: build variables: CCACHE_BASEDIR: "${CI_PROJECT_DIR}" CCACHE_DIR: "${CI_PROJECT_DIR}/_ccache" - PYENV_VERSION: "3.5.6" + PYENV_VERSION: "3.6.12" script: - python3 -m pip install --user mako markdown - meson --prefix /usr --libdir /usr/lib64 --buildtype debug -Ddoctool=enabled -Dgtk_doc=true -Dcairo=enabled -Dpython=python3 _build . |