From 2977adf7f9a6c6716012f91a63804e17f4820e22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= Date: Sun, 3 Feb 2019 20:20:09 +0100 Subject: [PATCH] CI: Stop targeting specific Py3 versions --- .gitlab-ci.yml | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0c6dd78..1fb095e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,29 +12,14 @@ Python 2.7: reports: junit: test/pytest.xml - -Python 3.6: - script: - - py_version=3.6 - - EXTRA_INSTALL="numpy pybind11" - - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh - - ". ./build-and-test-py-project.sh" - tags: - - python3.6 - except: - - tags - artifacts: - reports: - junit: test/pytest.xml - -Python 3.7: +Python 3: script: - - py_version=3.7 + - py_version=3 - EXTRA_INSTALL="numpy pybind11" - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh - ". ./build-and-test-py-project.sh" tags: - - python3.7 + - python3 except: - tags artifacts: @@ -62,6 +47,6 @@ Documentation: - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-docs.sh - ". ./build-docs.sh" tags: - - python3.5 + - python3 only: - master -- GitLab