From d6ac167fe6a4f35cad9b57683e924fbef385876e Mon Sep 17 00:00:00 2001 From: Jon Date: Sun, 16 Aug 2020 19:50:59 -0700 Subject: [PATCH] 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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5caf9b6a..712d54ca 100644 --- a/Makefile +++ b/Makefile @@ -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())")