@@ -79,18 +79,24 @@ jobs:
79
79
- name : Run Sphinx (HTML)
80
80
env :
81
81
# 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'
83
85
run : |
84
86
$SPHINX doc _build -b html
85
87
- name : Run Sphinx (LaTeX, but without running LaTeX)
86
88
env :
87
89
# 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'
89
93
run : |
90
94
$SPHINX doc _build -b latex
91
95
- name : Run Sphinx (epub)
92
96
env :
93
97
# 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'
95
101
run : |
96
102
$SPHINX doc _build -b epub
0 commit comments