File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 1919# with Crate these terms will supersede the license and you may use the
2020# software solely pursuant to the terms of the relevant commercial agreement.
2121import os
22+ import warnings
2223
2324from crate .theme import rtd as theme
2425from crate .theme .rtd import __version__
183184linkcheck_retries = 3
184185linkcheck_timeout = 15
185186
187+ # Suppress myst-nb deprecation warnings until fixed upstream.
188+ # https://github.com/executablebooks/MyST-NB/issues/645
189+ warnings .filterwarnings (
190+ "ignore" ,
191+ message = r".*myst_nb\.sphinx_\.Parser\.env.*" ,
192+ category = DeprecationWarning ,
193+ )
194+
186195# -- Options for MyST -------------------------------------------------
187196myst_heading_anchors = 3
188197myst_enable_extensions = [
You can’t perform that action at this time.
0 commit comments