@@ -79,18 +79,24 @@ jobs:
7979 - name : Run Sphinx (HTML)
8080 env :
8181 # There is a weird warning from jupyter_core (https://github.com/jupyter/jupyter_core/issues/398)
82- PYTHONWARNINGS : error,default::DeprecationWarning
82+ # RemovedInSphinx10Warning: 'sphinx.util.import_object' is deprecated
83+ # https://github.com/sphinx-doc/sphinx/issues/13083
84+ PYTHONWARNINGS : error,default::DeprecationWarning,default:'sphinx.util.import_object'
8385 run : |
8486 $SPHINX doc _build -b html
8587 - name : Run Sphinx (LaTeX, but without running LaTeX)
8688 env :
8789 # There is a weird warning from jupyter_core (https://github.com/jupyter/jupyter_core/issues/398)
88- PYTHONWARNINGS : error,default::DeprecationWarning
90+ # RemovedInSphinx10Warning: 'sphinx.util.import_object' is deprecated
91+ # https://github.com/sphinx-doc/sphinx/issues/13083
92+ PYTHONWARNINGS : error,default::DeprecationWarning,default:'sphinx.util.import_object'
8993 run : |
9094 $SPHINX doc _build -b latex
9195 - name : Run Sphinx (epub)
9296 env :
9397 # There is a weird warning from jupyter_core (https://github.com/jupyter/jupyter_core/issues/398)
94- PYTHONWARNINGS : error,default::DeprecationWarning
98+ # RemovedInSphinx10Warning: 'sphinx.util.import_object' is deprecated
99+ # https://github.com/sphinx-doc/sphinx/issues/13083
100+ PYTHONWARNINGS : error,default::DeprecationWarning,default:'sphinx.util.import_object'
95101 run : |
96102 $SPHINX doc _build -b epub
0 commit comments