Skip to content

Commit

Permalink
python3 -> python in Makefile
Browse files Browse the repository at this point in the history
My installation doesn't bother defining python3 any more. I think we can assume python is v3 now
  • Loading branch information
hyanwong authored Oct 16, 2024
1 parent 2fb6ab8 commit 6515bea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6515bea

Please sign in to comment.