diff options
author | Ivan Kanakarakis <ivan.kanak@gmail.com> | 2018-07-04 11:59:07 +0300 |
---|---|---|
committer | Ivan Kanakarakis <ivan.kanak@gmail.com> | 2018-07-04 11:59:07 +0300 |
commit | baf6afd7eb775647ad87b2461023976175ac0263 (patch) | |
tree | 012ceb45e611fde5281233d59a3e8c716b12d8fd | |
parent | 2a5a6ee47b9db3a37ee6eda6eb3c40af076760e5 (diff) | |
download | pysaml2-baf6afd7eb775647ad87b2461023976175ac0263.tar.gz |
Fix references to docs
Signed-off-by: Ivan Kanakarakis <ivan.kanak@gmail.com>
-rw-r--r-- | MANIFEST.in | 4 | ||||
-rwxr-xr-x | docs/make.sh | 4 | ||||
-rw-r--r-- | release-howto.rst | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/MANIFEST.in b/MANIFEST.in index a572ee5e..3d5b6477 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -5,8 +5,8 @@ include CHANGELOG.rst include src/saml2/xml_template/template.xml -graft doc -prune doc/build +graft docs +prune docs/build prune tests prune example diff --git a/docs/make.sh b/docs/make.sh index a2d7c6e6..65a507ed 100755 --- a/docs/make.sh +++ b/docs/make.sh @@ -1,5 +1,5 @@ #!/bin/sh rm -f saml2* -sphinx-apidoc -F -o ../doc/ ../src/saml2 +sphinx-apidoc -F -o ../docs/ ../src/saml2 make clean -make html
\ No newline at end of file +make html diff --git a/release-howto.rst b/release-howto.rst index 286846a9..f6fa97a1 100644 --- a/release-howto.rst +++ b/release-howto.rst @@ -40,7 +40,7 @@ When releasing a new version, the following steps should be taken: 8. Upload the documentation to PyPI. First you need to generate the html version of the documentation:: - cd doc + cd docs/ make clean make html cd _build/html |