Skip to content

Commit ed2c0cb

Browse files
authored
Allow sphinx resolution of Azure types again. (#937)
# Pull Request ## Title Allow sphinx resolution of Azure types again. ______________________________________________________________________ ## Description See Also: - Quansight-Labs/intersphinx_registry#58 - #912 ______________________________________________________________________ ## Type of Change - 🛠️ Bug fix - 📝 Documentation update ______________________________________________________________________
1 parent f2b3e81 commit ed2c0cb

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

doc/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
setuptools-scm>=8.1.0
22
sphinx
33
sphinx-autoapi
4-
intersphinx_registry>=0.2410.14 # https://github.com/Quansight-Labs/intersphinx_registry/pull/41
4+
intersphinx_registry>=0.2501.23 # https://github.com/Quansight-Labs/intersphinx_registry/pull/58
55
nbsphinx
66
jupyter_core>=4.11.2 # nbsphix dependency - addresses CVE-2022-39286
77
nbconvert

doc/source/conf.py

+2-7
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,8 @@ def is_on_github_actions():
136136
intersphinx_mapping = get_intersphinx_mapping(
137137
packages={
138138
"asyncssh",
139-
# Azure SDKs removed their intersphinx publishing.
140-
# https://github.com/Azure/azure-sdk-for-python/issues/39316
141-
# "azure-core",
142-
# "azure-identity",
139+
"azure-core",
140+
"azure-identity",
143141
"configspace",
144142
"matplotlib",
145143
"numpy",
@@ -235,9 +233,6 @@ def setup(app: SphinxApp) -> None:
235233
nitpick_ignore_regex = [
236234
# Ignore some external references that don't use sphinx for their docs.
237235
(r"py:.*", r"flaml\..*"),
238-
# Azure SDKs removed their intersphinx publishing.
239-
# https://github.com/Azure/azure-sdk-for-python/issues/39316
240-
(r"py:.*", r"azure\..*"),
241236
]
242237

243238
# Which documents to include in the build.

0 commit comments

Comments
 (0)