bumpver/makefile.config.make

22 lines
509 B
Text
Raw Normal View History

2018-11-04 21:34:53 +01:00
PACKAGE_NAME := pycalver
# This is the python version that is used for:
# - `make fmt`
# - `make ipy`
# - `make lint`
# - `make devtest`
2019-02-22 22:44:40 +01:00
DEVELOPMENT_PYTHON_VERSION := python=3.7
2018-11-04 21:34:53 +01:00
2018-12-05 09:42:26 +01:00
# These must be valid (space separated) conda package names.
# A separate conda environment will be created for each of these.
#
2018-11-04 21:34:53 +01:00
# Some valid options are:
# - python=2.7
# - python=3.5
# - python=3.6
# - python=3.7
# - pypy2.7
# - pypy3.5
2019-02-15 00:17:46 +01:00
SUPPORTED_PYTHON_VERSIONS := python=2.7 python=3.5 python=3.6 python=3.7 pypy2.7 pypy3.5