Skip to content

Commit

Permalink
docs: update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
xeroc committed Jan 26, 2023
1 parent 27ba578 commit cb608fc
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 1 deletion.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,10 @@ check:
docs:
sphinx-apidoc -d 6 -e -f -o docs . *.py tests
make -C docs clean html

.PHONY: release
release:
git diff-index --quiet HEAD || { echo "untracked files! Aborting"; exit 1; }
git checkout develop
git checkout -b release/$(shell date +'%Y%m%d')
git push origin release/$(shell date +'%Y%m%d')
7 changes: 7 additions & 0 deletions docs/graphenebase.ripemd160.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
graphenebase.ripemd160 module
=============================

.. automodule:: graphenebase.ripemd160
:members:
:undoc-members:
:show-inheritance:
1 change: 1 addition & 0 deletions docs/graphenebase.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Submodules
graphenebase.operationids
graphenebase.operations
graphenebase.prefix
graphenebase.ripemd160
graphenebase.signedtransactions
graphenebase.transactions
graphenebase.types
Expand Down
1 change: 1 addition & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
graphenelib==1.2.0
sphinx
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,5 @@ basepython=
changedir=
docs
deps=-rdocs/requirements.txt
sphinx
commands=
sphinx-build -b html ./ ./html

0 comments on commit cb608fc

Please sign in to comment.