bumpver/makefile.config.make

22 lines
498 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`
DEVELOPMENT_PYTHON_VERSION := python=3.6
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-01-07 18:30:28 +01:00
SUPPORTED_PYTHON_VERSIONS := python=2.7 python=3.6 python=3.7 pypy2.7 pypy3.5