-
Notifications
You must be signed in to change notification settings - Fork 57
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.0: sphinx warnings reference target not found
#103
Comments
Can you confirm if this was an issue with previous versions? |
It was et least in last 3-4 months (I had no time to report that .. sorry) |
No problem. I haven't seen this issue personally (and I built all my documentation with the |
Oh, wait, you're referring to the docs for this project. Apologies. I'll take a look now |
Tested and it still needs one small patch --- a/docs/conf.py~ 2022-04-26 17:55:14.000000000 +0000
+++ b/docs/conf.py 2022-04-26 17:56:41.179553922 +0000
@@ -5,6 +5,7 @@
import os
import sys
+sys.path.insert(0, os.path.abspath('..'))
sys.path.insert(0, os.path.abspath('../examples'))
# -- General configuration ------------------------------------------------ With that patch is possible now generate documentation out of source tree and without tox (which is shorter 😄 ) + /usr/bin/sphinx-build -n -T -b man docs build/sphinx/man
Running Sphinx v4.5.0
making output directory... done
building [mo]: targets for 0 po files that are out of date
building [man]: all manpages
updating environment: [new config] 7 added, 0 changed, 0 removed
reading sources... [100%] usage
/home/tkloczko/rpmbuild/BUILD/sphinx-click-4.0.0/docs/changelog.rst:4: CRITICAL: Problems with "include" directive path:
InputError: [Errno 2] No such file or directory: 'ChangeLog'.
looking for now-outdated files... none found
pickling environment... done
checking consistency... done
writing... python-sphinx-click.3 { installation usage contributing changelog examples/index examples/commandcollections } done
build succeeded, 1 warning. Nevertheless .. thank you 😄 |
Done 🙂 |
Thank you 😄 |
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:
The text was updated successfully, but these errors were encountered: