-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
4.0.1: sphinx warnings #287
Comments
OK I found what is going on. Looks like it is necessary small patch --- a/doc/source/conf.py~ 2022-05-03 17:40:06.149851923 +0000
+++ b/doc/source/conf.py 2022-05-03 17:40:44.016865537 +0000
@@ -10,9 +10,9 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
-# import os
-# import sys
-# sys.path.insert(0, os.path.abspath('.'))
+import os
+import sys
+sys.path.insert(0, os.path.abspath('../..'))
# -- Project information ----------------------------------------------------- This patch is doing exactly what is mentioned in linex above modyfication. + /usr/bin/sphinx-build -n -T -b man doc/source build/sphinx/man
Running Sphinx v4.5.0
making output directory... done
WARNING: html_static_path entry '_static' does not exist
building [mo]: targets for 0 po files that are out of date
building [man]: all manpages
updating environment: [new config] 8 added, 0 changed, 0 removed
reading sources... [100%] pykeepass
looking for now-outdated files... none found
pickling environment... done
checking consistency... done
writing... python-pykeepass.3 { pykeepass group entry attachment icons exceptions baseelement } /home/tkloczko/rpmbuild/BUILD/pykeepass-4.0.1/pykeepass/pykeepass.py:docstring of pykeepass.pykeepass.PyKeePass.empty_group:6: WARNING: py:obj reference target not found: Group
/home/tkloczko/rpmbuild/BUILD/pykeepass-4.0.1/pykeepass/pykeepass.py:docstring of pykeepass.pykeepass.PyKeePass.entries:1: WARNING: py:obj reference target not found: Entry
/home/tkloczko/rpmbuild/BUILD/pykeepass-4.0.1/pykeepass/pykeepass.py:docstring of pykeepass.pykeepass.PyKeePass.groups:1: WARNING: py:obj reference target not found: Group
/home/tkloczko/rpmbuild/BUILD/pykeepass-4.0.1/pykeepass/pykeepass.py:docstring of pykeepass.pykeepass.PyKeePass.trash_entry:4: WARNING: py:obj reference target not found: Entry
/home/tkloczko/rpmbuild/BUILD/pykeepass-4.0.1/pykeepass/pykeepass.py:docstring of pykeepass.pykeepass.PyKeePass.trash_group:4: WARNING: py:obj reference target not found: Group
done
build succeeded, 6 warnings. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Looks like sphinx shows some warnings:
The text was updated successfully, but these errors were encountered: