We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Like #7183, I've stumbled onto an apparent issue with intersphinx and :attr: references to properties. In particular, I'm getting this warning:
:attr:
/Users/jaraco/code/main/cssutils/docs/css.rst:11: WARNING: py:attr reference target not found: cssutils.css.CSSStyleSheet.cssRules
Even though that property does exist. It does seem that if I replace the property() syntax with an @property decorator, the issue goes away.
property()
@property
$ git clone https://github.com/jaraco/cssutils@96019226 $ cd cssutils $ tox -e docs | grep 'py:attr reference target not found: cssutils.css.CSSStyleSheet.cssRules'
Sphinx should find the property.
https://github.com/jaraco/cssutils
No response
any
3.10.1
5.0.1
The text was updated successfully, but these errors were encountered:
Use @Property decorator to satisfy intersphinx. Ref #21. Workaround for
5d0970e
sphinx-doc/sphinx#10514
No branches or pull requests
Describe the bug
Like #7183, I've stumbled onto an apparent issue with intersphinx and
:attr:
references to properties. In particular, I'm getting this warning:Even though that property does exist. It does seem that if I replace the
property()
syntax with an@property
decorator, the issue goes away.How to Reproduce
Expected behavior
Sphinx should find the property.
Your project
https://github.com/jaraco/cssutils
Screenshots
No response
OS
any
Python version
3.10.1
Sphinx version
5.0.1
Sphinx extensions
No response
Extra tools
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: