-
Notifications
You must be signed in to change notification settings - Fork 9
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
New RTD/sphinx build warning #153
Comments
I just yesterday noticed the same thing fixing other things! It was fixed temporarily in #151 and a proper fix is pending in #152. It seems to have been caused by a new pygments release that contained some undocumented changes to the python lexer, more info in the issue. I'll keep this open just in case, but I'll look to solve this soon. In the meantime you can use our master or require pygments<2.19 explicitly 👌 Lemme know if it helps! |
That's plenty info to work around it on our end, thanks for the quick response! |
It's now fixed for good on master, but I'll keep this issue open until release. I'll do some other maintenance first 👌 but you can expect it within a few days at least! |
Version |
Everything works, thanks for the quick fix! |
We recently got a RTD build failure stemming from sphinx-codeautolink, and I'm supremely confused why it started failing just now.
generated html is
which seems perfectly fine to me. I can repro it locally (clone the repo and run
tox -e docs
) and viewing the html page it seems identical to previously passing builds.PR: python-trio/flake8-async#335
failing build: https://readthedocs.org/projects/flake8-async/builds/26766124/
previously passing build: https://readthedocs.org/projects/flake8-async/builds/26677112/
I tried changing the code in the example to see if it was
from trio import x, y
specifically that made it fail - but I get the same warning withimport trio
.I have no clue what changed between these builds, making one fail and not the other. No deps have had new releases, it doesn't seem dependent on specific python versions (RTD builds with 3.13.0, I can repro it locally with py311 and py312). Maybe it's ubuntu-lts-latest and/or RTD, and it's always been failing locally, but...??
The text was updated successfully, but these errors were encountered: