Skip to content

Commit cb608fc

Browse files
committed
docs: update docs
1 parent 27ba578 commit cb608fc

5 files changed

Lines changed: 16 additions & 1 deletion

File tree

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,10 @@ check:
5252
docs:
5353
sphinx-apidoc -d 6 -e -f -o docs . *.py tests
5454
make -C docs clean html
55+
56+
.PHONY: release
57+
release:
58+
git diff-index --quiet HEAD || { echo "untracked files! Aborting"; exit 1; }
59+
git checkout develop
60+
git checkout -b release/$(shell date +'%Y%m%d')
61+
git push origin release/$(shell date +'%Y%m%d')

docs/graphenebase.ripemd160.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
graphenebase.ripemd160 module
2+
=============================
3+
4+
.. automodule:: graphenebase.ripemd160
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

docs/graphenebase.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Submodules
2020
graphenebase.operationids
2121
graphenebase.operations
2222
graphenebase.prefix
23+
graphenebase.ripemd160
2324
graphenebase.signedtransactions
2425
graphenebase.transactions
2526
graphenebase.types

docs/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
graphenelib==1.2.0
2+
sphinx

tox.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,5 @@ basepython=
3131
changedir=
3232
docs
3333
deps=-rdocs/requirements.txt
34-
sphinx
3534
commands=
3635
sphinx-build -b html ./ ./html

0 commit comments

Comments
 (0)