We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adc9de8 commit 90e301fCopy full SHA for 90e301f
Makefile
@@ -12,14 +12,14 @@ init: venv
12
sed -i -e 's/import indradb_pb2/import indradb.indradb_pb2/g' indradb/indradb_pb2_grpc.py
13
14
docs:
15
- . venv/bin/activate && python setup.py clean build install
+ . venv/bin/activate && python3 setup.py clean build install
16
. venv/bin/activate && pdoc --html --html-dir ./docs ./indradb
17
18
release:
19
git checkout master
20
git push origin master
21
rm -rf build dist
22
- python setup.py clean build sdist bdist_wheel
+ python3 setup.py clean build sdist bdist_wheel
23
. venv/bin/activate && twine upload --skip-existing dist/*
24
25
test:
0 commit comments