This repository has been archived by the owner on Feb 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs: furo theme * add schema check * drop CircleCI * sphinx==4.0 & nbsphinx==0.8.6
- Loading branch information
Showing
7 changed files
with
46 additions
and
135 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: CI action schema | ||
on: # Trigger the workflow on push or pull request, but only for the master branch | ||
push: {} | ||
pull_request: | ||
branches: [master] | ||
|
||
jobs: | ||
validate-schema: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install pkg | ||
run: | | ||
pip install check-jsonschema | ||
- name: GH Workflows | ||
run: | | ||
check-jsonschema .github/workflows/*.yml --schemafile "https://json.schemastore.org/github-workflow" |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
sphinx>=2.0, <3.0 | ||
sphinx>=4.0, <4.1 # assert 'Verbatim' in lines[0] | ||
m2r # fails with multi-line text | ||
myst-parser | ||
nbsphinx>=0.8.5 | ||
nbsphinx==0.8.6 # freeze for some "Unexpected indentation" in notebooks | ||
pandoc | ||
docutils<0.15 # higher version breaks py2 | ||
docutils # >0.15 higher version breaks py2 | ||
imgconverter | ||
ipython | ||
furo |
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