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.x] fix intersphinx cache #12087

Draft
wants to merge 36 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
e50c662
fix intersphinx cache loading in incremental builds
picnixz Oct 4, 2023
ca545a3
fix lint0
picnixz Oct 4, 2023
cfcb4f5
Remove debug print
picnixz Oct 5, 2023
9d436b3
Merge branch 'sphinx-doc:master' into fix/11466-intersphinx-inventory…
picnixz Oct 5, 2023
92243a4
save
picnixz Oct 5, 2023
37250f9
Merge branch 'master' into fix/11466-intersphinx-inventory-consistency
picnixz Oct 9, 2023
4b1ac3f
Merge branch 'fix/11466-intersphinx-inventory-consistency' of github.…
picnixz Feb 3, 2024
4f8bb9e
Merge remote-tracking branch 'upstream/master' into fix/11466-intersp…
picnixz Feb 3, 2024
56f5533
update implementation and comments
picnixz Feb 3, 2024
5ef7919
Merge branch 'master' into fix/11466-intersphinx-inventory-consistency
picnixz Feb 3, 2024
8bbcd83
Merge branch 'master' into fix/11466-intersphinx-inventory-consistency
picnixz Feb 12, 2024
333886a
Merge branch 'master' into fix/11466-intersphinx-inventory-consistency
picnixz Feb 13, 2024
ac22d65
update logic and refactor
picnixz Feb 13, 2024
822aa88
remove CHANGELOG entry until 8.x
picnixz Feb 14, 2024
6d60665
implement intersphinx new format
picnixz Feb 14, 2024
1e2b875
Merge branch 'master' into fix/11466-intersphinx-inventory-consistency
picnixz Feb 14, 2024
760e4fc
cleanup
picnixz Feb 14, 2024
eea6a9d
cleanup 3.9
picnixz Feb 14, 2024
9cdd373
remove typing_extensions dependency
picnixz Feb 14, 2024
ae80634
cleanup comment
picnixz Feb 14, 2024
14836d4
Add typing
picnixz Mar 11, 2024
bb09f20
apply formatter
picnixz Mar 11, 2024
3466db0
deprecate intersphinx alpha format
picnixz Mar 11, 2024
7277f71
deprecate intersphinx alpha format
picnixz Mar 11, 2024
a6fdcec
upgrade tests
picnixz Mar 11, 2024
479a3fe
Update doc
picnixz Mar 11, 2024
a9dd038
Merge branch 'sphinx-doc:master' into core/deprecate-intersphinx-1-0
picnixz Mar 14, 2024
5e7c383
Merge branch 'sphinx-doc:master' into core/deprecate-intersphinx-1-0
picnixz Mar 14, 2024
f906314
fixup
picnixz Mar 14, 2024
ca22f10
Merge branch 'master' into core/deprecate-intersphinx-1-0
picnixz Mar 14, 2024
bdfb3e8
Merge branch 'sphinx-doc:master' into core/deprecate-intersphinx-1-0
picnixz Mar 14, 2024
d4b4227
Merge branch 'sphinx-doc:master' into fix/11466-intersphinx-inventory…
picnixz Mar 14, 2024
8c7894b
Update doc
picnixz Mar 11, 2024
128c324
fixup
picnixz Mar 14, 2024
1821d17
fixup
picnixz Mar 14, 2024
d95d046
Merge branch 'master' into fix/11466-intersphinx-inventory-consistency
picnixz Mar 17, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 0 additions & 22 deletions doc/usage/extensions/intersphinx.rst
Original file line number Diff line number Diff line change
Expand Up @@ -126,28 +126,6 @@ linking:
('../../otherbook/build/html/objects.inv', None)),
}

**Old format for this config value**

.. deprecated:: 6.2

.. RemovedInSphinx80Warning

.. caution:: This is the format used before Sphinx 1.0.
It is deprecated and will be removed in Sphinx 8.0.

A dictionary mapping URIs to either ``None`` or an URI. The keys are the
base URI of the foreign Sphinx documentation sets and can be local paths or
HTTP URIs. The values indicate where the inventory file can be found: they
can be ``None`` (at the same location as the base URI) or another local or
HTTP URI.

Example:

.. code:: python

intersphinx_mapping = {'https://docs.python.org/': None}


.. confval:: intersphinx_cache_limit

The maximum number of days to cache remote inventories. The default is
Expand Down