From d39b67798a485574ab223862045e884dd966d6a2 Mon Sep 17 00:00:00 2001 From: janmax <j.michal@stud.uni-goettingen.de> Date: Sun, 11 Mar 2018 20:50:32 +0100 Subject: [PATCH] Bump Python version to 3.5 to support typing --- .gitlab-ci.yml | 4 ++-- bin/hektor | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e554783..c1d1777 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,9 +1,9 @@ -image: python:3.4 +image: python:3.5 before_script: - python -V - pip install -e . - + variables: PIP_CACHE_DIR: "$CI_PROJECT_DIR/pip-cache" diff --git a/bin/hektor b/bin/hektor index e521675..6e708f8 100755 --- a/bin/hektor +++ b/bin/hektor @@ -5,6 +5,6 @@ import sys import hektor if __name__ == '__main__': - if sys.version_info < (3, 4): + if sys.version_info < (3, 5): sys.exit("At least Python 3.4 is required.") hektor.main() -- GitLab