From 359e686a48a51c25d77abca626c3249f6ea50379 Mon Sep 17 00:00:00 2001 From: Yan Wong Date: Wed, 17 Jul 2024 09:51:56 +0100 Subject: [PATCH] Specify standard python (not python3) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 37c38db1..f0128911 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ CFLAGS=-std=c99 -g -O3 -march=native -funroll-loops -ffast-math \ all: _tsinfer.cpython-34m.so _tsinfer.cpython-34m.so: _tsinfermodule.c - CC="${CC}" CFLAGS="${CFLAGS}" python3 setup.py build_ext --inplace + CC="${CC}" CFLAGS="${CFLAGS}" python setup.py build_ext --inplace ctags: ctags lib/*.c lib/*.h tsinfer/*.py