From df899b98011210f282c56af60e6559b96c1eb732 Mon Sep 17 00:00:00 2001 From: Ryan Kelly Date: Wed, 9 Apr 2014 03:43:09 +1000 Subject: [PATCH] Use `python2` by default, to guard against py3 incompatibility --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e468a15..e82d0de 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,5 @@ -VIRTUALENV = virtualenv +SYSTEMPYTHON = `which python2 python | head -n 1` +VIRTUALENV = virtualenv --python=$(SYSTEMPYTHON) PYTHON = local/bin/python NOSE = local/bin/nosetests -s FLAKE8 = local/bin/flake8