-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs build failing on Pygments lexter warning #2067
Comments
Given that $ python -m pip show Pygments | grep Required-by
Required-by: ipython, jupyter-console, nbconvert, nbdime, qtconsole, readme-renderer, rich, Sphinx and between the last working build of the docs on 2022-11-17 and now (2022-11-28) the difference in installed dependencies includes $ diff --color -u /tmp/pass.txt /tmp/fail.txt
...
-ipykernel 6.17.1
-ipython 8.6.0
+ipykernel 6.18.1
+ipython 8.7.0 I'm going to assume there is something different with |
This shows up in ipython/ipython#13845 as well, so I think that this is going to exist for a bit and that PR #2066 should get merged in while this all gets figured out. It does seem that ipython/ipython#13845 (comment) is correct though about
$ python -m pip list | grep 'setuptools\|ipython'
ipython 8.7.0
ipython-genutils 0.2.0
setuptools 65.6.3
$ python -c 'from importlib.metadata import entry_points; print(entry_points(group="pygments.lexers"))'
[]
$ python -m pip install --upgrade 'ipython==8.6.0'
$ python -m pip list | grep 'setuptools\|ipython'
ipython 8.6.0
ipython-genutils 0.2.0
setuptools 65.6.3
$ python -c 'from importlib.metadata import entry_points; print(entry_points(group="pygments.lexers"))'
[EntryPoint(name='ipython', value='IPython.lib.lexers:IPythonLexer', group='pygments.lexers'), EntryPoint(name='ipython3', value='IPython.lib.lexers:IPython3Lexer', group='pygments.lexers'), EntryPoint(name='ipythonconsole', value='IPython.lib.lexers:IPythonConsoleLexer', group='pygments.lexers')] so to get around this just disallow
|
Hm. Something related to spatialaudio/nbsphinx#24 is breaking the docs build. We're getting
for all the notebooks during the docs build and we fail on warnings.
Originally posted by @matthewfeickert in #2066 (comment)
The text was updated successfully, but these errors were encountered: