Fix: Restrict jupyter-book version to restore website deployment#291
Merged
FanwangM merged 1 commit intotheochem:mainfrom Feb 23, 2026
Merged
Fix: Restrict jupyter-book version to restore website deployment#291FanwangM merged 1 commit intotheochem:mainfrom
FanwangM merged 1 commit intotheochem:mainfrom
Conversation
Member
|
@FanwangM I think @RichRick1 has experience with this. |
FanwangM
approved these changes
Feb 23, 2026
Collaborator
FanwangM
left a comment
There was a problem hiding this comment.
Fixing the jupyter-book is a neat solution at this stage. We may need to plan for migration to jupyter-book version 2 at some point in the near future.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I have noticed that https://selector.qcdevs.org is not opening, and It is giving a
404 Error.This is because
v2.xofjupyter-bookintroduces a new build system which isn’t compatible with the present Sphinx configuration files,book/content/_config.yml, andbook/content/_toc.yml.Because
book/content/requirements.txtdoesn’t state a version maximum,pip install -r book/content/requirements.txtinstalls the latest v2.x, which then prevents the build.This PR fixes the issue by restricting
jupyter-bookto a version under<2inbook/content/requirements.txt.Verification
jupyter-book build ./book/contentnow runs without a problem, and no longer shows the EISDIR error.