From f3559b63b20fb7b07effccea27de3e4ffacea9c6 Mon Sep 17 00:00:00 2001 From: Manuel Barkhau Date: Thu, 6 Dec 2018 15:25:49 +0100 Subject: [PATCH] reorg supported python versions --- bootstrapit.sh | 2 +- makefile.config.make | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/bootstrapit.sh b/bootstrapit.sh index 6ae219c..80ed1af 100644 --- a/bootstrapit.sh +++ b/bootstrapit.sh @@ -16,7 +16,7 @@ GIT_REPO_DOMAIN="gitlab.com" PACKAGE_VERSION="v201812.0007-beta" DEFAULT_PYTHON_VERSION="python=3.6" -SUPPORTED_PYTHON_VERSIONS="python=2.7 pypy2.7 pypy3.5 python=3.5 python=3.6 python=3.7" +SUPPORTED_PYTHON_VERSIONS="python=2.7 python=3.5 python=3.6 python=3.7 pypy2.7 pypy3.5" IS_PUBLIC=1 diff --git a/makefile.config.make b/makefile.config.make index 53ebe7d..48184dd 100644 --- a/makefile.config.make +++ b/makefile.config.make @@ -1,6 +1,5 @@ PACKAGE_NAME := pycalver -DOCKER_REGISTRY_URL := registry.gitlab.com/mbarkhau/pycalver # This is the python version that is used for: # - `make fmt` @@ -19,4 +18,4 @@ DEVELOPMENT_PYTHON_VERSION := python=3.6 # - python=3.7 # - pypy2.7 # - pypy3.5 -SUPPORTED_PYTHON_VERSIONS := python=2.7 python=3.4 python=3.6 +SUPPORTED_PYTHON_VERSIONS := python=2.7 python=3.5 python=3.6 python=3.7 pypy2.7 pypy3.5