Skip to content
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

3.3.0: sphinx warnings reference target not found #296

Open
kloczek opened this issue May 29, 2022 · 0 comments
Open

3.3.0: sphinx warnings reference target not found #296

kloczek opened this issue May 29, 2022 · 0 comments

Comments

@kloczek
Copy link

kloczek commented May 29, 2022

On building my packages I'm using sphinx-build command with -n switch which shows warmings about missing references. These are not critical issues.
Here is the output with warnings:

+ /usr/bin/sphinx-build -n -T -b man docs 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] 9 added, 0 changed, 0 removed
reading sources... [100%] jwt/index
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jwt.py:docstring of jose.jwt.decode:47: WARNING: Definition list ends without a blank line; unexpected unindent.
looking for now-outdated files... none found
pickling environment... done
checking consistency... done
writing... python-jose.3 { jws/index jwt/index jwk/index jwe/index jws/api jwt/api jwk/api jwe/api } /home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jws.py:docstring of jose.jws.get_unverified_claims:: WARNING: py:exc reference target not found: JWSError
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jws.py:docstring of jose.jws.get_unverified_header:: WARNING: py:exc reference target not found: JWSError
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jws.py:docstring of jose.jws.get_unverified_headers:: WARNING: py:exc reference target not found: JWSError
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jws.py:docstring of jose.jws.sign:: WARNING: py:class reference target not found: optional
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jws.py:docstring of jose.jws.sign:: WARNING: py:class reference target not found: optional
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jws.py:docstring of jose.jws.sign:: WARNING: py:exc reference target not found: JWSError
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jws.py:docstring of jose.jws.verify:: WARNING: py:exc reference target not found: JWSError
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jwt.py:docstring of jose.jwt.decode:: WARNING: py:class reference target not found: iterable
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jwt.py:docstring of jose.jwt.decode:: WARNING: py:exc reference target not found: JWTError
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jwt.py:docstring of jose.jwt.decode:: WARNING: py:exc reference target not found: ExpiredSignatureError
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jwt.py:docstring of jose.jwt.decode:: WARNING: py:exc reference target not found: JWTClaimsError
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jwt.py:docstring of jose.jwt.encode:: WARNING: py:class reference target not found: optional
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jwt.py:docstring of jose.jwt.encode:: WARNING: py:class reference target not found: optional
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jwt.py:docstring of jose.jwt.encode:: WARNING: py:class reference target not found: optional
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jwt.py:docstring of jose.jwt.encode:: WARNING: py:exc reference target not found: JWTError
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jwt.py:docstring of jose.jwt.get_unverified_claims:: WARNING: py:exc reference target not found: JWTError
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jwt.py:docstring of jose.jwt.get_unverified_header:: WARNING: py:exc reference target not found: JWTError
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jwt.py:docstring of jose.jwt.get_unverified_headers:: WARNING: py:exc reference target not found: JWTError
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jwe.py:docstring of jose.jwe.decrypt:: WARNING: py:exc reference target not found: JWEError
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jwe.py:docstring of jose.jwe.encrypt:: WARNING: py:class reference target not found: optional
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jwe.py:docstring of jose.jwe.encrypt:: WARNING: py:class reference target not found: optional
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jwe.py:docstring of jose.jwe.encrypt:: WARNING: py:class reference target not found: optional
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jwe.py:docstring of jose.jwe.encrypt:: WARNING: py:class reference target not found: optional
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jwe.py:docstring of jose.jwe.encrypt:: WARNING: py:class reference target not found: optional
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jwe.py:docstring of jose.jwe.encrypt:: WARNING: py:exc reference target not found: JWEError
/home/tkloczko/rpmbuild/BUILD/python-jose-3.3.0/docs/../jose/jwe.py:docstring of jose.jwe.get_unverified_header:: WARNING: py:exc reference target not found: JWEError
done
build succeeded, 28 warnings.

You can peak on fixes that kind of issues in other projects
latchset/jwcrypto#289
click-contrib/sphinx-click@abc31069
latchset/jwcrypto#289
RDFLib/rdflib-sqlalchemy#95

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant