https://github.com/maxbane/repro-jupyterbook-cache
Demonstrates reproduction of jupyterbook cache bug
https://github.com/maxbane/repro-jupyterbook-cache
Last synced: 10 months ago
JSON representation
Demonstrates reproduction of jupyterbook cache bug
- Host: GitHub
- URL: https://github.com/maxbane/repro-jupyterbook-cache
- Owner: maxbane
- Created: 2023-01-16T19:39:37.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-16T19:53:50.000Z (over 3 years ago)
- Last Synced: 2025-03-04T23:48:57.046Z (over 1 year ago)
- Language: Shell
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Reproducible example: jupyter-book fails when `execute_notebooks: "cache"`
because of unknown extra `format-nongpl` for package `jsonschema`:
https://github.com/executablebooks/jupyter-book/issues/1907
To reproduce, just run these commands (as of 2022-01-16), or run `repro.sh`,
which does the same thing:
```
python3 -m venv --symlinks --upgrade-deps test-venv
source test-venv/bin/activate
pip cache purge
pip install jupyter-book
pip freeze > versions.txt
jupyter-book config sphinx docs/
sphinx-build -vvvvvv -b html docs/ docs/_build/html
```
I've included my `versions.txt` from the last time I ran these commands, so that
you can diff against any version changes in the meantime.
Also note that everything works if you change `execute_notebooks` to `"force"`.