Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

Latest commit

 

History

History
7 lines (6 loc) · 622 Bytes

CONTRIBUTING.md

File metadata and controls

7 lines (6 loc) · 622 Bytes

Notes for Making Changes

  1. The notebooks need to contain execution output for NBViewer
  2. The notebooks should be run in an env created with conda env create -n bokeh-notebooks -f environment.yml. Make sure to activate your env with conda activate bokeh-notebooks before using or developing the notebooks!
  3. Oneliner to run the notebooks git ls-files -z \*.ipynb | xargs -0 jupyter nbconvert --to notebook --inplace --execute
  4. While working on changes, if you want to strip the output from the notebooks you can git ls-files -z \*.ipynb | xargs -0 jupyter nbconvert --clear-output