8000
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 05284fc commit 615d5aeCopy full SHA for 615d5ae
Makefile
@@ -27,12 +27,17 @@ cover:
27
find tests -type d | xargs nosetests --with-coverage --cover-inclusive --cover-erase --cover-package=twilio
28
29
docs-install:
30
- . venv/bin/activate; pip install sphinx
+ . venv/bin/activate; pip install -U sphinx
31
32
docs:
33
-rm -rf source/_rst/*
34
+ -rm -rf build/*
35
. venv/bin/activate; sphinx-apidoc -f twilio -o docs/source/_rst
- cd docs && make clean && make html
36
+ . venv/bin/activate; sphinx-build -b html -c ./docs -d docs/build/doctrees . docs/build/html
37
+
38
+ @echo
39
+ @echo "Build finished. The HTML pages are in build/html."
40
41
42
release:
43
. venv/bin/activate; python setup.py sdist upload
0 commit comments