forked from mbarkhau/pylint-ignore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
32 lines (26 loc) · 754 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
PACKAGE_NAME := pylint-ignore
# This is the python version that is used for:
# - `make fmt`
# - `make ipy`
# - `make lint`
# - `make devtest`
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.
#
# Some valid options are:
# - python=2.7
# - python=3.5
# - python=3.6
# - python=3.7
# - pypy2.7
# - pypy3.5
SUPPORTED_PYTHON_VERSIONS := python=3.9 pypy3.5 python=2.7
include Makefile.bootstrapit.make
## -- Extra/Custom/Project Specific Tasks --
## Dummy target for illustration
## This is just to illustrate how to add your
## extra targets outside of the main Makefile.
.PHONY: demo
demo:
echo "Your custom make target here"