-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #121 from brian-rose/clean-up
Clean up
- Loading branch information
Showing
3 changed files
with
11 additions
and
10 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 |
---|---|---|
|
@@ -10,7 +10,7 @@ repos: | |
- id: double-quote-string-fixer | ||
|
||
- repo: https://github.com/psf/black | ||
rev: 22.12.0 | ||
rev: 23.3.0 | ||
hooks: | ||
- id: black | ||
|
||
|
@@ -28,8 +28,9 @@ repos: | |
rev: v2.2.0 | ||
hooks: | ||
- id: seed-isort-config | ||
|
||
- repo: https://github.com/PyCQA/isort | ||
rev: 5.11.4 | ||
rev: 5.12.0 | ||
hooks: | ||
- id: isort | ||
|
||
|
@@ -40,7 +41,7 @@ repos: | |
additional_dependencies: [[email protected]] | ||
|
||
- repo: https://github.com/nbQA-dev/nbQA | ||
rev: 1.6.1 | ||
rev: 1.7.0 | ||
hooks: | ||
- id: nbqa-black | ||
additional_dependencies: [black] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ title: Project Pythia Cookbook Template | |
author: the <a href="https://projectpythia.org/">Project Pythia</a> Community | ||
logo: notebooks/images/logos/pythia_logo-white-rtext.svg | ||
email: [email protected] | ||
copyright: "2022" | ||
copyright: "2023" | ||
|
||
description: A sample cookbook description. | ||
thumbnail: thumbnail.png | ||
|
@@ -16,7 +16,7 @@ tags: | |
- samplepackage | ||
|
||
execute: | ||
# To execute notebooks via a binder instead, replace 'cache' with 'binder' | ||
# To execute notebooks via a Binder instead, replace 'cache' with 'binder' | ||
execute_notebooks: cache | ||
timeout: 600 | ||
allow_errors: False # cells with expected failures must set the `raises-exception` cell tag | ||
|
@@ -36,10 +36,10 @@ parse: | |
|
||
sphinx: | ||
config: | ||
linkcheck_ignore: ["https://doi.org/*",] | ||
nb_execution_raise_on_error: true # raise exception in build if there are notebook errors | ||
linkcheck_ignore: ["https://doi.org/*"] # don't run link checker on DOI links since they are immutable | ||
nb_execution_raise_on_error: true # raise exception in build if there are notebook errors (this flag is ignored if building on binder) | ||
html_favicon: notebooks/images/icons/favicon.ico | ||
html_last_updated_fmt: '%-d %B %Y' | ||
html_last_updated_fmt: "%-d %B %Y" | ||
html_theme: sphinx_pythia_theme | ||
html_permalinks_icon: '<i class="fas fa-link"></i>' | ||
html_theme_options: | ||
|