-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DX: build documentation through
sphinx-build
(#25)
* DOC: add website favicon * DOC: add website icons to sidebar * DOC: convert STRONG2020 logo to SVG * DX: add Hypothesis.is overlay for commenting to website * DX: implement autoformatters for TOML files * ENH: update documentation requirements * MAINT: define dependencies in pyproject instead of `requirements.txt` * MAINT: extend `.gitignore` structure
- Loading branch information
Showing
18 changed files
with
513 additions
and
62 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 |
---|---|---|
|
@@ -9,3 +9,6 @@ trim_trailing_whitespace = true | |
|
||
[*.{ipynb,md}] | ||
indent_size = unset | ||
|
||
[*.{py,toml}] | ||
indent_size = 4 |
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,30 @@ | ||
name: CI | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- epic/* | ||
- "[0-9]+.[0-9]+.x" | ||
pull_request: | ||
branches: | ||
- main | ||
- epic/* | ||
- "[0-9]+.[0-9]+.x" | ||
workflow_dispatch: | ||
inputs: | ||
specific-pip-packages: | ||
description: Run CI with specific pip packages | ||
required: false | ||
type: string | ||
|
||
jobs: | ||
style: | ||
if: inputs.specific-pip-packages == '' | ||
secrets: | ||
token: ${{ secrets.PAT }} | ||
uses: ComPWA/actions/.github/workflows/pre-commit.yml@v1 |
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 |
---|---|---|
@@ -1,9 +1,44 @@ | ||
# Output files | ||
*.csv | ||
*.dat | ||
*.txt | ||
data/ | ||
|
||
# Build files | ||
*.egg-info/ | ||
*build/ | ||
.eggs/ | ||
.fuse_* | ||
dist/ | ||
version.py | ||
|
||
# Temporary files | ||
*.pyc | ||
*condaenv.* | ||
.coverage | ||
.coverage.* | ||
.ipynb_checkpoints/ | ||
.mypy*/ | ||
.pytest_cache/ | ||
.virtual_documents/ | ||
__pycache__/ | ||
_build/ | ||
data/ | ||
docs/lecture18 | ||
htmlcov/ | ||
jupyter_execute/ | ||
prof/ | ||
|
||
# Virtual environments | ||
*venv/ | ||
.tox/ | ||
pyvenv*/ | ||
|
||
# Settings | ||
.idea/ | ||
**.code-workspace | ||
|
||
# Exceptions | ||
!.github/*.yml | ||
!.github/*/*.yml | ||
!.pre-commit-config.yaml | ||
!.vscode/*.json | ||
!environment.yml |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[formatting] | ||
align_comments = false | ||
align_entries = false | ||
allowed_blank_lines = 1 | ||
array_auto_collapse = false | ||
array_auto_expand = true | ||
array_trailing_comma = true | ||
column_width = 88 | ||
compact_inline_tables = true | ||
indent_string = " " | ||
reorder_arrays = true | ||
reorder_keys = true |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
lecture18 |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,4 +1,3 @@ | ||
format: jb-book | ||
root: index | ||
chapters: | ||
entries: | ||
- glob: lecture* |
Oops, something went wrong.