File tree Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 1
1
# pin jinja2 due to broken deprecation used in nbconvert
2
2
autodoc-traits
3
+ intersphinx-registry
3
4
jinja2 == 3.0.*
4
5
matplotlib
5
6
myst-nb
Original file line number Diff line number Diff line change 18
18
# documentation root, use os.path.abspath to make it absolute, like shown here.
19
19
# sys.path.insert(0, os.path.abspath('.'))
20
20
# We load the ipython release info into a dict by explicit execution
21
+ from intersphinx_registry import get_intersphinx_mapping
22
+
21
23
iprelease = {}
22
24
exec (
23
25
compile (
358
360
359
361
360
362
# Example configuration for intersphinx: refer to the Python standard library.
361
- intersphinx_mapping = {
362
- 'python' : ('https://docs.python.org/3/' , None ),
363
- 'ipython' : ('https://ipython.readthedocs.io/en/stable/' , None ),
364
- 'pymongo' : ('https://pymongo.readthedocs.io/en/stable/' , None ),
365
- 'distributed' : ('https://distributed.readthedocs.io/en/stable/' , None ),
366
- 'jupyterclient' : ('https://jupyter-client.readthedocs.io/en/stable/' , None ),
367
- }
363
+ intersphinx_mapping = get_intersphinx_mapping (
364
+ packages = {
365
+ 'python' ,
366
+ 'ipython' ,
367
+ 'pymongo' ,
368
+ 'distributed' ,
369
+ 'jupyterclient' ,
370
+ }
371
+ )
368
372
369
373
import os
370
374
You can’t perform that action at this time.
0 commit comments