Update Makefile to use python3

Not sure if this file is still being used, but noticed it still pointed to a python version that no longer builds
This commit is contained in:
Jon 2020-08-16 19:50:59 -07:00 committed by GitHub
parent 0086c28b3a
commit d6ac167fe6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
# This Makefile is only used by developers.
PYVER:=2.7
PYVER:=3
PYTHON?=python$(PYVER)
VERSION:=$(shell $(PYTHON) setup.py --version)
PLATFORM:=$(shell $(PYTHON) -c "from __future__ import print_function; from distutils.util import get_platform; print(get_platform())")