reorg supported python versions

This commit is contained in:
Manuel Barkhau 2018-12-06 15:25:49 +01:00
parent acfc861e58
commit f3559b63b2
2 changed files with 2 additions and 3 deletions

View file

@ -16,7 +16,7 @@ GIT_REPO_DOMAIN="gitlab.com"
PACKAGE_VERSION="v201812.0007-beta" PACKAGE_VERSION="v201812.0007-beta"
DEFAULT_PYTHON_VERSION="python=3.6" 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 IS_PUBLIC=1

View file

@ -1,6 +1,5 @@
PACKAGE_NAME := pycalver PACKAGE_NAME := pycalver
DOCKER_REGISTRY_URL := registry.gitlab.com/mbarkhau/pycalver
# This is the python version that is used for: # This is the python version that is used for:
# - `make fmt` # - `make fmt`
@ -19,4 +18,4 @@ DEVELOPMENT_PYTHON_VERSION := python=3.6
# - python=3.7 # - python=3.7
# - pypy2.7 # - pypy2.7
# - pypy3.5 # - 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