use py39 on docker ci

This commit is contained in:
Manuel Barkhau 2021-05-13 20:03:07 +00:00
parent 9379984b93
commit 0219eaf557
3 changed files with 10 additions and 44 deletions

View file

@ -1,12 +1,12 @@
PACKAGE_NAME := pycalver
PACKAGE_NAME := bumpver
# This is the python version that is used for:
# - `make fmt`
# - `make ipy`
# - `make lint`
# - `make devtest`
DEVELOPMENT_PYTHON_VERSION := python=3.8
DEVELOPMENT_PYTHON_VERSION := python=3.9
# These must be valid (space separated) conda package names.
# A separate conda environment will be created for each of these.
@ -18,7 +18,7 @@ DEVELOPMENT_PYTHON_VERSION := python=3.8
# - python=3.7
# - pypy2.7
# - pypy3.5
SUPPORTED_PYTHON_VERSIONS := python=2.7 python=3.5 python=3.6 python=3.8 pypy2.7 pypy3.5
SUPPORTED_PYTHON_VERSIONS := python=3.9 pypy3.5 python=2.7 pypy2.7
include Makefile.bootstrapit.make