-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
build-doc workflow fails on CircleCI #3702
Comments
maresb
added a commit
to maresb/plotly.py
that referenced
this issue
May 1, 2022
Second proposed solution to plotly#3702
maresb
added a commit
to maresb/plotly.py
that referenced
this issue
May 1, 2022
First proposed solution to plotly#3702
This was referenced May 1, 2022
Thanks! I'm not sure why the jobs are not running on your PRs but the path of least resistance here is to pin |
Closed by #3704 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Looking at the checks for all the recent PRs, they are failing on the "make html" step with
This seems to be a problem with a breaking change since jinja2 v3.1. Since the nbconvert version is currently pinned to the old
v5.6.1
the version constraints of nbconvert don't account for the change to jinja2.I can see three obvious potential ways to solve this:
jinja2<3.1
nbconvert=5.6.1
At least one of 1. or 2. will probably lead to a quick fix, but will inevitably lead to similar eventual future breakage. So 3. is probably the better solution, but requires significantly more effort.
Reference: nbconvert issue regarding ImportError
The text was updated successfully, but these errors were encountered: