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

8.3.0: sphinx warnings reference target not found #13664

Open
kloczek opened this issue May 1, 2022 · 5 comments
Open

8.3.0: sphinx warnings reference target not found #13664

kloczek opened this issue May 1, 2022 · 5 comments

Comments

@kloczek
Copy link
Contributor

kloczek commented May 1, 2022

First of all it is not possible now to use straight sphinx-build to generate documentation out of source tree

+ /usr/bin/sphinx-build -n -T -b man docs/source build/sphinx/man
Running Sphinx v4.5.0
Adding Tag: ipystable

Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/sphinx/registry.py", line 425, in load_extension
    mod = import_module(extname)
  File "/usr/lib64/python3.8/importlib/__init__.py", line 127, in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
  File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
  File "<frozen importlib._bootstrap>", line 991, in _find_and_load
  File "<frozen importlib._bootstrap>", line 961, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
  File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
  File "<frozen importlib._bootstrap>", line 991, in _find_and_load
  File "<frozen importlib._bootstrap>", line 961, in _find_and_load_unlocked
  File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
  File "<frozen importlib._bootstrap>", line 1014, in _gcd_import
  File "<frozen importlib._bootstrap>", line 991, in _find_and_load
  File "<frozen importlib._bootstrap>", line 973, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'IPython'

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/sphinx/cmd/build.py", line 272, in build_main
    app = Sphinx(args.sourcedir, args.confdir, args.outputdir,
  File "/usr/lib/python3.8/site-packages/sphinx/application.py", line 223, in __init__
    self.setup_extension(extension)
  File "/usr/lib/python3.8/site-packages/sphinx/application.py", line 380, in setup_extension
    self.registry.load_extension(self, extname)
  File "/usr/lib/python3.8/site-packages/sphinx/registry.py", line 428, in load_extension
    raise ExtensionError(__('Could not import extension %s') % extname,
sphinx.errors.ExtensionError: Could not import extension IPython.sphinxext.ipython_console_highlighting (exception: No module named 'IPython')

Extension error:
Could not import extension IPython.sphinxext.ipython_console_highlighting (exception: No module named 'IPython')

This can be fixed by patch like below

--- a/docs/source/conf.py~      2022-05-01 00:29:34.000000000 +0000
+++ b/docs/source/conf.py       2022-05-01 00:30:46.027556081 +0000
@@ -18,6 +18,8 @@
 import sys, os
 from pathlib import Path

+sys.path.insert(0, os.path.abspath('../..'))
+
 # https://read-the-docs.readthedocs.io/en/latest/faq.html
 ON_RTD = os.environ.get('READTHEDOCS', None) == 'True'

That kinf of fix is suggested in sphinx example configuration file https://www.sphinx-doc.org/en/master/usage/configuration.html#example-of-configuration-file

Than .. 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/source build/sphinx/man
Running Sphinx v4.5.0
Adding Tag: ipystable
Initializing GitHub plugin
making output directory... done
[autosummary] generating autosummary for: about/history.rst, about/index.rst, about/license_and_copyright.rst, api/index.rst, config/callbacks.rst, config/custommagics.rst, config/details.rst, config/eventloops.rst, config/extensions/autoreload.rst, config/extensions/index.rst, ..., whatsnew/version0.9.rst, whatsnew/version1.0.rst, whatsnew/version2.0.rst, whatsnew/version3.rst, whatsnew/version3_widget_migration.rst, whatsnew/version4.rst, whatsnew/version5.rst, whatsnew/version6.rst, whatsnew/version7.rst, whatsnew/version8.rst
loading intersphinx inventory from https://docs.python.org/3/objects.inv...
loading intersphinx inventory from https://rpy2.github.io/doc/latest/html/objects.inv...
loading intersphinx inventory from https://jupyter-client.readthedocs.io/en/latest/objects.inv...
loading intersphinx inventory from https://jupyter.readthedocs.io/en/latest/objects.inv...
loading intersphinx inventory from https://jedi.readthedocs.io/en/latest/objects.inv...
loading intersphinx inventory from https://traitlets.readthedocs.io/en/latest/objects.inv...
loading intersphinx inventory from https://ipykernel.readthedocs.io/en/latest/objects.inv...
loading intersphinx inventory from https://python-prompt-toolkit.readthedocs.io/en/stable/objects.inv...
loading intersphinx inventory from https://ipywidgets.readthedocs.io/en/stable/objects.inv...
loading intersphinx inventory from https://ipyparallel.readthedocs.io/en/stable/objects.inv...
loading intersphinx inventory from https://pip.pypa.io/en/stable/objects.inv...
intersphinx inventory has moved: https://jupyter.readthedocs.io/en/latest/objects.inv -> https://docs.jupyter.org/en/latest/objects.inv
building [mo]: targets for 0 po files that are out of date
building [man]: all manpages
updating environment: [new config] 78 added, 0 changed, 0 removed
reading sources... [100%] whatsnew/version8
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/api/index.rst:12: CRITICAL: Problems with "include" directive path:
InputError: [Errno 2] No such file or directory: 'docs/source/api/generated/gen.txt'.
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/options/index.rst:9: WARNING: toctree contains reference to nonexisting document 'config/options/terminal'
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/options/index.rst:9: WARNING: toctree contains reference to nonexisting document 'config/options/kernel'
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/shortcuts/index.rst:17: CRITICAL: Problems with "csv-table" directive path:
[Errno 2] No such file or directory: 'docs/source/config/shortcuts/single_filtered.csv'.

.. csv-table::
    :header: Shortcut,Filter,Description
    :widths: 30, 30, 100
    :delim: tab
    :file: single_filtered.csv
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/shortcuts/index.rst:27: CRITICAL: Problems with "csv-table" directive path:
[Errno 2] No such file or directory: 'docs/source/config/shortcuts/multi_filtered.csv'.

.. csv-table::
    :header: Shortcut,Filter,Description
    :widths: 30, 30, 100
    :delim: tab
    :file: multi_filtered.csv
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/magics.rst:23: CRITICAL: Problems with "include" directive path:
InputError: [Errno 2] No such file or directory: 'docs/source/interactive/magics-generated.txt'.
looking for now-outdated files... none found
pickling environment... done
checking consistency... done
writing... python-ipython.3 { overview whatsnew/index whatsnew/development whatsnew/pr/antigravity-feature whatsnew/pr/end-shortcut-accept-suggestion whatsnew/pr/incompat-switching-to-perl whatsnew/version8 whatsnew/github-stats-8 whatsnew/version7 whatsnew/github-stats-7 whatsnew/version6 whatsnew/github-stats-6 whatsnew/version5 whatsnew/github-stats-5 whatsnew/version4 whatsnew/github-stats-4 whatsnew/version3 whatsnew/github-stats-3 whatsnew/version3_widget_migration whatsnew/version2.0 whatsnew/github-stats-2.0 whatsnew/version1.0 whatsnew/github-stats-1.0 whatsnew/version0.13 whatsnew/github-stats-0.13 whatsnew/version0.12 whatsnew/github-stats-0.12 whatsnew/version0.11 whatsnew/github-stats-0.11 whatsnew/version0.10 whatsnew/version0.9 whatsnew/version0.8 install/index install/install install/kernel_install interactive/index interactive/tutorial interactive/plotting interactive/reference interactive/shell interactive/autoawait interactive/tips interactive/python-ipython-diff interactive/magics config/index config/intro config/options/index config/shortcuts/index config/details config/extensions/index config/extensions/autoreload config/extensions/storemagic config/integrating config/custommagics config/shell_mimerenderer config/inputtransforms config/callbacks config/eventloops development/index development/how_ipython_works development/wrapperkernels development/execution development/lexer development/config development/inputhook_app coredev/index api/index sphinxext about/index about/history about/license_and_copyright } /home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/overview.rst:91: WARNING: 'envvar' reference target not found: PATH
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version7.rst:733: WARNING: 'magic' reference target not found: xmode
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version7.rst:749: WARNING: 'magic' reference target not found: run
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version7.rst:861: WARNING: 'configtrait' reference target not found: TerminalInteractiveShell.space_for_menu
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version7.rst:870: WARNING: 'configtrait' reference target not found: TerminalInteractiveShell.autoformatter
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version7.rst:1250: WARNING: 'magic' reference target not found: psearch
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version7.rst:1678: WARNING: 'magic' reference target not found: run
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version7.rst:1763: WARNING: 'magic' reference target not found: run
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version7.rst:1763: WARNING: 'magic' reference target not found: run
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version7.rst:1767: WARNING: 'cellmagic' reference target not found: script
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version7.rst:1767: WARNING: 'cellmagic' reference target not found: bash
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version7.rst:1767: WARNING: 'cellmagic' reference target not found: ruby
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version6.rst:37: WARNING: 'configtrait' reference target not found: Completer.use_jedi
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version6.rst:48: WARNING: py:class reference target not found: IPython.display.Code
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version6.rst:50: WARNING: 'cellmagic' reference target not found: html
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version6.rst:243: WARNING: py:mod reference target not found: ipykernel
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version6.rst:313: WARNING: 'cellmagic' reference target not found: capture
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version6.rst:322: WARNING: 'any' reference target not found: IPython.display.GeoJSON
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version6.rst:361: WARNING: 'magic' reference target not found: profile
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version6.rst:361: WARNING: 'magic' reference target not found: prun
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version5.rst:28: WARNING: py:class reference target not found: IPython.display.ProgressBar
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version5.rst:30: WARNING: py:meth reference target not found: InteractiveShell.check_complete
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version5.rst:76: WARNING: 'magic' reference target not found: timeit
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version5.rst:83: WARNING: 'magic' reference target not found: profile
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version5.rst:83: WARNING: 'magic' reference target not found: prun
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version5.rst:147: WARNING: py:func reference target not found: IPython.display.display
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version5.rst:214: WARNING: 'envvar' reference target not found: EDITOR
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version5.rst:219: WARNING: 'any' reference target not found: IPython.core.debugger
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version5.rst:229: WARNING: 'cellmagic' reference target not found: capture
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version5.rst:234: WARNING: 'any' reference target not found: InteractiveShellEmbed
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version5.rst:236: WARNING: 'any' reference target not found: InteractiveShellEmbed
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version5.rst:340: WARNING: unknown document: /config/options/terminal
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version5.rst:348: WARNING: py:mod reference target not found: IPython.core.debugger
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version5.rst:348: WARNING: py:mod reference target not found: IPython.terminal.debugger
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version4.rst:75: WARNING: py:mod reference target not found: IPython.utils.path
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version4.rst:75: WARNING: py:mod reference target not found: IPython.paths
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version3.rst:147: WARNING: py:class reference target not found: TextWidget
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version3.rst:147: WARNING: py:class reference target not found: TextareaWidget
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version3.rst:151: WARNING: 'magic' reference target not found: load
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version3.rst:158: WARNING: py:class reference target not found: DirectView
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version3.rst:158: WARNING: py:meth reference target not found: DirectView.use_cloudpickle
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version3.rst:168: WARNING: py:class reference target not found: ClearOutputPreprocessor
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version3.rst:185: WARNING: 'magic' reference target not found: timeit
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version3.rst:189: WARNING: py:mod reference target not found: IPython.lib.inputhook
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version3.rst:189: WARNING: py:meth reference target not found: InputHookManager.enable_gui
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version3.rst:189: WARNING: py:meth reference target not found: InputHookManager.disable_gui
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version3.rst:199: WARNING: py:func reference target not found: IPython.html.widgets.interaction.interact_manual
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version3.rst:199: WARNING: py:func reference target not found: IPython.html.widgets.interaction.interact
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version3.rst:267: WARNING: 'magic' reference target not found: env
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version3.rst:267: WARNING: 'magic' reference target not found: env
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version3.rst:267: WARNING: 'magic' reference target not found: env
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version3.rst:287: WARNING: py:func reference target not found: IPython.nbformat.read
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version3.rst:287: WARNING: py:func reference target not found: IPython.nbformat.write
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version3.rst:287: WARNING: py:mod reference target not found: IPython.nbformat.current
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version3.rst:297: WARNING: py:func reference target not found: IPython.core.oinspect.getsource
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version3.rst:338: WARNING: py:meth reference target not found: KernelManager.start_kernel
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version3.rst:338: WARNING: py:meth reference target not found: KernelManager.format_kernel_cmd
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version2.0.rst:120: WARNING: py:mod reference target not found: IPython.html.widgets
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version2.0.rst:187: WARNING: py:func reference target not found: IPython.display.set_matplotlib_formats
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version2.0.rst:229: WARNING: py:func reference target not found: IPython.utils.pickleutil.use_dill
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version2.0.rst:229: WARNING: py:mod reference target not found: IPython.parallel
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version2.0.rst:229: WARNING: py:meth reference target not found: DirectView.use_dill
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version2.0.rst:244: WARNING: py:class reference target not found: BaseFormatter
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version2.0.rst:266: WARNING: py:class reference target not found: IPython.core.formatters.FormatterWarning
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version2.0.rst:312: WARNING: py:exc reference target not found: IPython.nbconvert.utils.pandoc.PandocMissing
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version2.0.rst:349: WARNING: py:class reference target not found: IPython.core.alias.AliasManager
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version2.0.rst:363: WARNING: py:mod reference target not found: IPython.lib.irunner
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version2.0.rst:371: WARNING: py:class reference target not found: IPython.core.inputsplitter.IPythonInputSplitter
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version2.0.rst:371: WARNING: py:meth reference target not found: IPython.core.inputsplitter.IPythonInputSplitter.raw_reset
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:12: WARNING: py:mod reference target not found: IPython.nbconvert
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:35: WARNING: py:mod reference target not found: IPython.kernel
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:35: WARNING: py:mod reference target not found: IPython.zmq
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:35: WARNING: py:mod reference target not found: IPython.kernel.zmq
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:35: WARNING: py:mod reference target not found: IPython.kernel
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:39: WARNING: py:mod reference target not found: IPython.frontend.qt
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:39: WARNING: py:mod reference target not found: IPython.qt
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:39: WARNING: py:mod reference target not found: IPython.frontend.html.notebook
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:39: WARNING: py:mod reference target not found: IPython.frontend
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:46: WARNING: py:mod reference target not found: IPython.sphinx
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:61: WARNING: py:func reference target not found: IPython.embed
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:61: WARNING: py:func reference target not found: Pdb.set_trace
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:61: WARNING: py:func reference target not found: start_ipython
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:125: WARNING: py:meth reference target not found: InteractiveShell.prefilter
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:125: WARNING: py:mod reference target not found: IPython.core.inputsplitter
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:131: WARNING: py:mod reference target not found: IPython.lib.inputhook
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:131: WARNING: py:mod reference target not found: IPython.lib
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:131: WARNING: py:mod reference target not found: IPython.lib.inputhook
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:137: WARNING: py:func reference target not found: IPython.utils.doctestreload.doctest_reload
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:141: WARNING: py:meth reference target not found: IPython.core.interactiveshell.InteractiveShell.new_main_mod
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:153: WARNING: py:mod reference target not found: IPython.nbconvert
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:180: WARNING: py:func reference target not found: raw_input
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:253: WARNING: py:class reference target not found: KernelManager
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version1.0.rst:253: WARNING: py:class reference target not found: KernelClient
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.13.rst:201: WARNING: py:class reference target not found: IPython.core.magic.Magics
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.13.rst:209: WARNING: py:mod reference target not found: IPython.core.magics
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.13.rst:403: WARNING: py:class reference target not found: IPython.parallel.Client
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.13.rst:403: WARNING: py:meth reference target not found: Client.activate
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.13.rst:455: WARNING: py:meth reference target not found: Client.spin_thread
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.13.rst:455: WARNING: py:meth reference target not found: Client.stop_spin_thread
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.13.rst:498: WARNING: py:func reference target not found: IPython.embed
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.13.rst:498: WARNING: py:func reference target not found: IPython.embed_kernel
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.13.rst:498: WARNING: py:func reference target not found: IPython.embed
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.13.rst:504: WARNING: py:func reference target not found: IPython.parallel.bind_kernel
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.13.rst:517: WARNING: py:mod reference target not found: IPython.display
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.13.rst:571: WARNING: 'envvar' reference target not found: IPYTHON_DIR
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.13.rst:577: WARNING: py:meth reference target not found: IPython.core.interactiveshell.InteractiveShell.run_cell
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.13.rst:577: WARNING: py:meth reference target not found: IPython.core.interactiveshell.InteractiveShell.run_ast_nodes
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.13.rst:667: WARNING: py:exc reference target not found: IPython.core.error.TryNext
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.12.rst:174: WARNING: py:mod reference target not found: IPython.parallel
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.12.rst:184: WARNING: py:class reference target not found: IPython.core.history.HistoryManager
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.12.rst:184: WARNING: py:class reference target not found: IPython.core.history.HistoryAccessor
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.12.rst:221: WARNING: py:func reference target not found: IPython.utils.path.get_ipython_dir
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.12.rst:226: WARNING: py:func reference target not found: raw_input
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.12.rst:231: WARNING: py:mod reference target not found: zmq
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.12.rst:250: WARNING: py:mod reference target not found: IPython.lib.kernel
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.12.rst:257: WARNING: py:class reference target not found: IPython.zmq.kernelmanager.KernelManager
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.12.rst:262: WARNING: py:class reference target not found: IPython.core.prompts.PromptManager
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.12.rst:262: WARNING: py:attr reference target not found: in_template
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.12.rst:262: WARNING: py:attr reference target not found: in2_template
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.12.rst:262: WARNING: py:attr reference target not found: out_template
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.12.rst:262: WARNING: py:attr reference target not found: rewrite_template
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.12.rst:271: WARNING: py:mod reference target not found: IPython.parallel.apps.launcher
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.12.rst:295: WARNING: py:func reference target not found: IPython.frontend.terminal.embed.embed
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:272: WARNING: py:class reference target not found: traitlets.config.configurable.Configurable
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:273: WARNING: py:class reference target not found: traitlets.config.application.Application
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:274: WARNING: py:class reference target not found: traitlets.config.loader.ConfigLoader
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:275: WARNING: py:class reference target not found: traitlets.config.loader.Config
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:311: WARNING: py:mod reference target not found: IPython.parallel
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:396: WARNING: py:mod reference target not found: IPython.extensions.pretty
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:405: WARNING: py:class reference target not found: IPython.core.interactiveshell.InteractiveShell
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:405: WARNING: py:class reference target not found: traitlets.config.configurable.Configurable
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:405: WARNING: py:mod reference target not found: ipmaker
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:411: WARNING: py:class reference target not found: IPython.core.interactiveshell.InteractiveShell
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:415: WARNING: py:class reference target not found: InteractiveShell
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:415: WARNING: py:class reference target not found: InteractiveShellEmbed
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:420: WARNING: py:class reference target not found: IPython.core.interactiveshell.InteractiveShell
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:420: WARNING: py:meth reference target not found: cleanup
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:420: WARNING: py:meth reference target not found: __del__
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:425: WARNING: py:mod reference target not found: IPython.utils.importstring
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:428: WARNING: py:mod reference target not found: IPython.core.prefilter
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:428: WARNING: py:class reference target not found: traitlets.config.configurable.Configurable
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:434: WARNING: py:mod reference target not found: IPython.core.alias
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:436: WARNING: py:func reference target not found: IPython.frontend.terminal.embed.embed
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:436: WARNING: py:class reference target not found: IPython.frontend.terminal.embed.InteractiveShellEmbed
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:436: WARNING: py:class reference target not found: IPython.frontend.terminal.embed.InteractiveShellEmbed
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:442: WARNING: py:mod reference target not found: traitlets.config.configurable
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:442: WARNING: py:class reference target not found: traitlets.config.configurable.Configurable
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:450: WARNING: py:class reference target not found: traitlets.config.loader.Config
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:450: WARNING: py:class reference target not found: traitlets.config.loader.Config
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:450: WARNING: py:class reference target not found: traitlets.config.loader.Config
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:457: WARNING: py:mod reference target not found: traitlets.config.loader
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:463: WARNING: py:class reference target not found: Application
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:463: WARNING: py:mod reference target not found: IPython.core.application
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:463: WARNING: py:class reference target not found: Configurable
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:463: WARNING: py:class reference target not found: BaseIPythonApplication
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:473: WARNING: py:class reference target not found: Instance
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:473: WARNING: py:class reference target not found: traitlets.HasTraitlets
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:479: WARNING: py:mod reference target not found: IPython.utils.ipstruct
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:490: WARNING: py:mod reference target not found: IPython.lib.inputhook
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:498: WARNING: py:mod reference target not found: IPython.lib.inputhook
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:505: WARNING: py:mod reference target not found: IPython.kernel
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:505: WARNING: py:mod reference target not found: IPython.parallel
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:513: WARNING: py:class reference target not found: traitlets.config.loader.KeyValueConfigLoader
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:522: WARNING: py:func reference target not found: load_ipython_extension
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:522: WARNING: py:func reference target not found: unload_ipython_extension
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:525: WARNING: py:class reference target not found: IPython.core.interactiveshell.InteractiveShell
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:525: WARNING: py:class reference target not found: IPython.core.interactiveshell.InteractiveShellEmbed
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:531: WARNING: py:meth reference target not found: Struct.__init__
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:531: WARNING: py:class reference target not found: Struct
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:534: WARNING: py:meth reference target not found: IPython.core.interactiveshell.InteractiveShell.ipmagic
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:534: WARNING: py:meth reference target not found: IPython.core.interactiveshell.InteractiveShell.magic.
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:537: WARNING: py:func reference target not found: ipmagic
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:537: WARNING: py:func reference target not found: ipalias
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:537: WARNING: py:mod reference target not found: __builtins__
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:540: WARNING: py:class reference target not found: IPython.core.interactivehell.InteractiveShell
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:540: WARNING: py:func reference target not found: get_ipython
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:540: WARNING: py:class reference target not found: IPython.core.interactiveshell.InteractiveShell
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:553: WARNING: py:func reference target not found: ipapi
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:560: WARNING: py:mod reference target not found: shellglobals
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:562: WARNING: py:mod reference target not found: IPython.core.shell
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:562: WARNING: py:mod reference target not found: IPython.lib.inputhook
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:566: WARNING: py:mod reference target not found: IPython.core
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:566: WARNING: py:mod reference target not found: IPython.lib
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:566: WARNING: py:mod reference target not found: IPython.utils
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:566: WARNING: py:mod reference target not found: IPython.deathrow
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:566: WARNING: py:mod reference target not found: IPython.quarantine
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:574: WARNING: py:mod reference target not found: IPython.ipapi
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:574: WARNING: py:mod reference target not found: IPython.core.ipapi
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:574: WARNING: py:mod reference target not found: IPython.Shell
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:574: WARNING: py:mod reference target not found: IPython.iplib
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:578: WARNING: py:mod reference target not found: Extensions
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:578: WARNING: py:mod reference target not found: extensions
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:578: WARNING: py:mod reference target not found: IPython.quarantine
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:578: WARNING: py:mod reference target not found: IPython.deathrow
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:578: WARNING: py:mod reference target not found: IPython.quarantine
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:578: WARNING: py:mod reference target not found: IPython.deathrow
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:585: WARNING: py:mod reference target not found: IPython.frontend
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:585: WARNING: py:mod reference target not found: IPython.gui
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.11.rst:585: WARNING: py:mod reference target not found: IPython.deathrow
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.10.rst:183: WARNING: py:mod reference target not found: IPython.demo
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.10.rst:186: WARNING: py:mod reference target not found: IPython.ipipe
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.10.rst:200: WARNING: py:mod reference target not found: IPython.demo
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.10.rst:204: WARNING: py:func reference target not found: find_cmd
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.10.rst:204: WARNING: py:mod reference target not found: IPython.platutils
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.10.rst:212: WARNING: py:class reference target not found: MultiengineClient
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.10.rst:212: WARNING: py:meth reference target not found: benchmark
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.10.rst:219: WARNING: py:mod reference target not found: IPython.Extensions.ipy_pretty
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.10.rst:227: WARNING: py:mod reference target not found: IPython.external
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.10.rst:342: WARNING: py:func reference target not found: IPython.genutils.doctest_reload
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:22: WARNING: py:func reference target not found: get_ipython_dir
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:22: WARNING: py:mod reference target not found: IPython.genutils
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:59: WARNING: py:class reference target not found: IPython.kernel.task.StringTask
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:59: WARNING: py:class reference target not found: IPython.kernel.task.MapTask
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:67: WARNING: py:class reference target not found: IPython.kernel.mapper.IMapper
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:67: WARNING: py:class reference target not found: IPython.kernel.mapper.IMapper
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:79: WARNING: py:mod reference target not found: IPython.kernel
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:79: WARNING: py:mod reference target not found: IPython.kernel.core
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:79: WARNING: py:mod reference target not found: IPython.tools
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:79: WARNING: py:mod reference target not found: IPython.testing
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:91: WARNING: py:mod reference target not found: IPython.kernel
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:127: WARNING: py:mod reference target not found: IPython.kernel.scripts.ipengine
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:147: WARNING: py:mod reference target not found: IPython.kernel
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:150: WARNING: py:func reference target not found: make_user_ns
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:150: WARNING: py:func reference target not found: make_user_namespaces
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:154: WARNING: py:class reference target not found: IPython.kernel.client.Task
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:154: WARNING: py:class reference target not found: IPython.kernel.client.StringTask
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:166: WARNING: py:class reference target not found: IPython.kernel.client.MultiEngineClient
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:166: WARNING: py:class reference target not found: IPython.kernel.client.TaskClient
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:172: WARNING: py:mod reference target not found: IPython.kernel.asyncclient
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:172: WARNING: py:func reference target not found: get_multiengine_client
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:172: WARNING: py:func reference target not found: get_task_client
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:196: WARNING: py:mod reference target not found: ipython1.kernel.asynclient
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:198: WARNING: py:mod reference target not found: ipython1.daemon
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:209: WARNING: py:mod reference target not found: asyncclient
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:213: WARNING: py:mod reference target not found: client
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:213: WARNING: py:func reference target not found: blockingCallFromThread
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:217: WARNING: py:meth reference target not found: MultiEngineClient.push_function
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:217: WARNING: py:meth reference target not found: MultiEngineClient.pull_function
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:240: WARNING: py:class reference target not found: DeferredList
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:240: WARNING: py:exc reference target not found: CompositeError
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:240: WARNING: py:exc reference target not found: CompositeError
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:258: WARNING: py:meth reference target not found: MultiEngineClient.push
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:258: WARNING: py:meth reference target not found: MultiEngineClient.push
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:258: WARNING: py:meth reference target not found: pushAll
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:258: WARNING: py:meth reference target not found: pullAll
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:266: WARNING: py:attr reference target not found: MultiEngineClient.magicTargets
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:266: WARNING: py:attr reference target not found: MultiEngineClient.targets
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:272: WARNING: py:class reference target not found: RemoteController
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:272: WARNING: py:class reference target not found: MultiEngineClient
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:272: WARNING: py:class reference target not found: TaskController
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:272: WARNING: py:class reference target not found: TaskClient
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:275: WARNING: py:mod reference target not found: api
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:275: WARNING: py:mod reference target not found: client
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/whatsnew/version0.9.rst:277: WARNING: py:exc reference target not found: CompositeError
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/install/install.rst:37: WARNING: py:mod reference target not found: pip
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/install/install.rst:68: WARNING: py:mod reference target not found: pip
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/install/install.rst:68: WARNING: py:mod reference target not found: pip
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:132: WARNING: 'magic' reference target not found: timeit
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:145: WARNING: 'magic' reference target not found: run
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:145: WARNING: 'magic' reference target not found: edit
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:145: WARNING: 'magic' reference target not found: save
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:145: WARNING: 'magic' reference target not found: macro
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:145: WARNING: 'magic' reference target not found: recall
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:148: WARNING: 'magic' reference target not found: colors
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:148: WARNING: 'magic' reference target not found: xmode
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:148: WARNING: 'magic' reference target not found: automagic
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:151: WARNING: 'magic' reference target not found: reset
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:151: WARNING: 'magic' reference target not found: timeit
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:151: WARNING: 'cellmagic' reference target not found: writefile
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:151: WARNING: 'magic' reference target not found: load
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:151: WARNING: 'magic' reference target not found: paste
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:160: WARNING: 'magic' reference target not found: automagic
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:179: WARNING: 'magic' reference target not found: run
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:189: WARNING: 'magic' reference target not found: edit
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:189: WARNING: 'magic' reference target not found: edit
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:198: WARNING: 'magic' reference target not found: debug
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:198: WARNING: 'magic' reference target not found: pdb
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:248: WARNING: 'magic' reference target not found: pushd
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:248: WARNING: 'magic' reference target not found: popd
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:248: WARNING: 'magic' reference target not found: dhist
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tutorial.rst:248: WARNING: 'magic' reference target not found: cd
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:23: WARNING: 'envvar' reference target not found: HOME
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:108: WARNING: 'magic' reference target not found: cd
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:114: WARNING: 'magic' reference target not found: timeit
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:122: WARNING: 'magic' reference target not found: timeit
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:175: WARNING: py:mod reference target not found: IPython.core.magic
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:214: WARNING: 'magic' reference target not found: pdoc
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:217: WARNING: 'magic' reference target not found: pdef
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:219: WARNING: 'magic' reference target not found: psource
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:221: WARNING: 'magic' reference target not found: pfile
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:224: WARNING: 'magic' reference target not found: who
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:224: WARNING: 'magic' reference target not found: whos
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:271: WARNING: 'envvar' reference target not found: INPUTRC
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:281: WARNING: 'magic' reference target not found: logstart
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:295: WARNING: 'magic' reference target not found: logstart
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:317: WARNING: 'magic' reference target not found: logoff
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:317: WARNING: 'magic' reference target not found: logon
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:336: WARNING: 'magic' reference target not found: sx
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:336: WARNING: 'magic' reference target not found: sx
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:374: WARNING: 'magic' reference target not found: alias
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:393: WARNING: 'magic' reference target not found: alias
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:396: WARNING: 'magic' reference target not found: rehashx
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:405: WARNING: py:mod reference target not found: IPython.lib.deepreload
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:422: WARNING: 'magic' reference target not found: xmode
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:422: WARNING: 'magic' reference target not found: colors
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:433: WARNING: 'magic' reference target not found: rep
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:459: WARNING: 'magic' reference target not found: rerun
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:459: WARNING: 'magic' reference target not found: macro
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:464: WARNING: 'magic' reference target not found: history
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:467: WARNING: 'magic' reference target not found: rerun
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:502: WARNING: 'magic' reference target not found: reset
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:502: WARNING: 'magic' reference target not found: xdel
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:512: WARNING: 'magic' reference target not found: cd
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:512: WARNING: 'magic' reference target not found: dhist
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:720: WARNING: py:mod reference target not found: IPython.frontend.terminal.embed
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:742: WARNING: 'magic' reference target not found: run
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:829: WARNING: 'magic' reference target not found: debug
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:829: WARNING: 'magic' reference target not found: pdb
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:899: WARNING: 'magic' reference target not found: gui
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:908: WARNING: py:class reference target not found: wx.App
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:983: WARNING: 'magic' reference target not found: matplotlib
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:1030: WARNING: py:mod reference target not found: IPython.lib.demo
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/reference.rst:1030: WARNING: py:class reference target not found: IPython.lib.demo.Demo
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/autoawait.rst:61: WARNING: 'magic' reference target not found: autoawait
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/autoawait.rst:129: WARNING: 'magic' reference target not found: autoawait
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/autoawait.rst:235: WARNING: 'magic' reference target not found: autoawait
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/autoawait.rst:235: WARNING: 'magic' reference target not found: run
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/interactive/tips.rst:37: WARNING: py:class reference target not found: IPython.lib.demo.Demo
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/intro.rst:40: WARNING: py:meth reference target not found: traitlets.config.LazyConfigValue.prepend
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/intro.rst:199: WARNING: py:func reference target not found: IPython.paths.get_ipython_dir
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/details.rst:27: WARNING: py:class reference target not found: IPython.terminal.prompts.Prompts
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/details.rst:33: WARNING: py:class reference target not found: TerminalInteractiveShell
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/details.rst:145: WARNING: 'envvar' reference target not found: EDITOR
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/details.rst:153: WARNING: py:attr reference target not found: TerminalInteractiveShell.editor
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/extensions/index.rst:54: WARNING: py:func reference target not found: load_ipython_extension
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/extensions/index.rst:54: WARNING: py:class reference target not found: IPython.core.interactiveshell.InteractiveShell
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/extensions/index.rst:59: WARNING: py:func reference target not found: load_ipython_extension
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/extensions/index.rst:65: WARNING: py:class reference target not found: InteractiveShell
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/extensions/index.rst:65: WARNING: py:meth reference target not found: IPython.core.interactiveshell.InteractiveShell.register_magic_function
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/extensions/index.rst:65: WARNING: py:meth reference target not found: IPython.core.interactiveshell.InteractiveShell.push
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/extensions/index.rst:65: WARNING: py:meth reference target not found: IPython.core.interactiveshell.InteractiveShell.drop_by_id
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/extensions/index.rst:102: WARNING: py:func reference target not found: sympy.init_printing
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/integrating.rst:112: WARNING: py:mod reference target not found: IPython.lib.pretty
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/custommagics.rst:6: WARNING: py:class reference target not found: IPython.core.magic.Magics
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/custommagics.rst:45: WARNING: py:class reference target not found: IPython.core.magic.Magics
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/custommagics.rst:130: WARNING: py:func reference target not found: define_magic
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/custommagics.rst:130: WARNING: py:func reference target not found: define_magic
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/inputtransforms.rst:31: WARNING: py:class reference target not found: IPython.core.interactiveshell.InteractiveShell
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/callbacks.rst:8: WARNING: py:mod reference target not found: IPython.core.events
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/callbacks.rst:13: WARNING: py:meth reference target not found: IPython.core.events.EventManager.register
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/callbacks.rst:109: WARNING: py:mod reference target not found: IPython.core.hooks
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/eventloops.rst:67: WARNING: py:meth reference target not found: IPython.kernel.zmq.kernelbase.Kernel.do_one_iteration
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/eventloops.rst:76: WARNING: py:func reference target not found: IPython.kernel.zmq.eventloops.register_integration
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/config/eventloops.rst:105: WARNING: py:mod reference target not found: IPython.kernel.zmq.eventloops
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/development/wrapperkernels.rst:21: WARNING: py:class reference target not found: ipykernel.kernelbase.Kernel
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/development/wrapperkernels.rst:59: WARNING: py:func reference target not found: raw_input
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/development/wrapperkernels.rst:62: WARNING: py:meth reference target not found: ipykernel.kernelbase.Kernel.send_response
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/development/lexer.rst:8: WARNING: py:mod reference target not found: IPython.lib.lexers
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/development/lexer.rst:29: WARNING: py:class reference target not found: IPythonConsoleLexer
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/development/lexer.rst:29: WARNING: py:mod reference target not found: IPython.sphinxext.ipython_console_hightlight
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/development/config.rst:21: WARNING: py:func reference target not found: IPython.paths.get_ipython_dir
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/development/config.rst:21: WARNING: 'envvar' reference target not found: IPYTHON_DIR
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/development/config.rst:84: WARNING: py:func reference target not found: IPython.paths.get_ipython_dir
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/development/config.rst:84: WARNING: py:func reference target not found: IPython.paths.locate_profile
/home/tkloczko/rpmbuild/BUILD/ipython-8.3.0/docs/source/development/inputhook_app.rst:5: WARNING: py:func reference target not found: raw_input
done
build succeeded, 371 warnings.
@MrMino
Copy link
Member

MrMino commented May 6, 2022

Not sure where your issues stem from, but for me, master compiles docs just fine:

mktmpenv   # I use virtualenvwrapper
pip install -r docs/requirements.txt
make -C docs

Dependencies for documentation building are specified within docs/requirements.txt, which contains the following:

-e .[test]

So if you are working from the root of the source tree it should already install IPython.

The patch from the sphinx config does not work when the package you are building a documentation for ships an extension for that documentation. IPython depends on lots of other things without which it will not be possible to import that extension.

@kloczek
Copy link
Contributor Author

kloczek commented May 6, 2022

Reported issue has nothing to do with some miussing modules in build env or using venv.
In Makefile sphins-build is executed without that -n option

ipython/docs/Makefile

Lines 13 to 15 in 1893a8f

PAPEROPT_a4 = -D latex_paper_size=a4
PAPEROPT_letter = -D latex_paper_size=letter
ALLSPHINXOPTS = -d build/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) $(SRCDIR)

And omly because of that you don't see those warnings.
Please try use that -n option in any preffered by you way of executing sphinx-build command.

@MrMino
Copy link
Member

MrMino commented May 6, 2022

Actually, I was talking about the error from the beginning of your post:

Extension error:
Could not import extension IPython.sphinxext.ipython_console_highlighting (exception: No module named 'IPython')

Wrt. the warnings - it's something to be fixed, yes.

@MrMino MrMino added the bug label May 6, 2022
@kloczek
Copy link
Contributor Author

kloczek commented May 23, 2022

@kloczek
Copy link
Contributor Author

kloczek commented Jun 11, 2022

Actually, I was talking about the error from the beginning of your post:

Extension error:
Could not import extension IPython.sphinxext.ipython_console_highlighting (exception: No module named 'IPython')

Wrt. the warnings - it's something to be fixed, yes.

Did you had installed IPython module installed ehen you've executes build documentation?
I haven't and documentation build propcess should not relay on that. It shout 100% depend only on content of the soource tree. That patch which I've added fixes that.

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

No branches or pull requests

2 participants