From 6515bea70a5376e6ecd42729c32964758356619c Mon Sep 17 00:00:00 2001 From: Yan Wong Date: Wed, 16 Oct 2024 10:47:40 +0100 Subject: [PATCH] python3 -> python in Makefile My installation doesn't bother defining python3 any more. I think we can assume python is v3 now --- python/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/Makefile b/python/Makefile index 68c1c41923..e6170ab5d7 100644 --- a/python/Makefile +++ b/python/Makefile @@ -3,10 +3,10 @@ all: ext3 allchecks: _tskitmodule.c CFLAGS="-std=c99 --coverage -Wall -Wextra -Werror -Wno-unused-parameter -Wno-cast-function-type" \ - python3 setup.py build_ext --inplace + python setup.py build_ext --inplace ext3: _tskitmodule.c - python3 setup.py build_ext --inplace + python setup.py build_ext --inplace ctags: ctags lib/*.c lib/*.h tskit/*.py