Skip to content

Commit

Permalink
Change python to python3 (#157)
Browse files Browse the repository at this point in the history
The default python on my system was and still is python 2. Seeing as this is a fairly common issue I'd highly recommend replacing the "python" commands with "python3" ones.
  • Loading branch information
madprogramer authored and mrtenda committed Feb 22, 2018
1 parent 5a59f81 commit c2314b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
all: coilsnake_lib submodule

install: all
python setup.py install
python3 setup.py install

test: coilsnake_lib
python setup.py test
python3 setup.py test

coverage: coilsnake_lib
script/coverage.sh

coilsnake_lib:
python setup.py build_ext --inplace clean
python3 setup.py build_ext --inplace clean

submodule:
git submodule init
git submodule update

clean:
python setup.py clean
python3 setup.py clean

0 comments on commit c2314b6

Please sign in to comment.