Skip to content

Commit 90e301f

Browse files
committed
Fix outdated calls to python
1 parent adc9de8 commit 90e301f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ init: venv
1212
sed -i -e 's/import indradb_pb2/import indradb.indradb_pb2/g' indradb/indradb_pb2_grpc.py
1313

1414
docs:
15-
. venv/bin/activate && python setup.py clean build install
15+
. venv/bin/activate && python3 setup.py clean build install
1616
. venv/bin/activate && pdoc --html --html-dir ./docs ./indradb
1717

1818
release:
1919
git checkout master
2020
git push origin master
2121
rm -rf build dist
22-
python setup.py clean build sdist bdist_wheel
22+
python3 setup.py clean build sdist bdist_wheel
2323
. venv/bin/activate && twine upload --skip-existing dist/*
2424

2525
test:

0 commit comments

Comments
 (0)