-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/25 integrate notebooks into docu (#149)
* Update dependencies, pre-commit, and add pandoc (instructions) #25 * Update docu creation and deployment workflow for nbsphinx #25 * Update headings for compatibility with nbsphinx/ docu rendering #25 * Incorporate coderabbit suggestions #25 * Update dependencies to fix safety issues for jupyterlab and notebook (not jinja) #25 * Rename notebooks, clean-up headings #25 * Attempt to fix case-sensitivity problem by renaming twice #25 * Attempt to fix case-sensitivity problem by renaming twice #25
- Loading branch information
1 parent
88a75f1
commit fbb870a
Showing
13 changed files
with
1,516 additions
and
1,232 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,13 +27,26 @@ jobs: | |
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install Pandoc | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y pandoc | ||
- name: Run poetry image | ||
uses: abatilo/[email protected] | ||
with: | ||
poetry-version: ${{ vars.POETRY_VERSION }} | ||
- name: Install dependencies | ||
run: | | ||
poetry install --with dev | ||
- name: Remove existing nb directory | ||
run: | | ||
if [ -d "docs/source/nb" ]; then | ||
rm -rf docs/source/nb | ||
fi | ||
- name: Copy Notebook to docs | ||
run: | | ||
mkdir -p docs/source/nb | ||
cp -r nb/. docs/source/nb/ | ||
- name: Build docs | ||
run: | | ||
cd docs | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.