-
-
Notifications
You must be signed in to change notification settings - Fork 434
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 #619 from neuropsychology/dev
0.2.0
- Loading branch information
Showing
525 changed files
with
2,072,899 additions
and
71,654 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[report] | ||
fail_under = 60 | ||
fail_under = 50 | ||
show_missing = True | ||
|
||
[run] | ||
|
Large diffs are not rendered by default.
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
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,56 @@ | ||
name: "📜 Documentation builder" | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
|
||
jobs: | ||
docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
with: | ||
fetch-depth: 0 # To be able to push refs to destination repo | ||
- name: Set up Python 🐍 | ||
uses: actions/setup-python@v3 | ||
with: | ||
cache: 'pip' | ||
|
||
- name: Install dependencies 🏭 | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install sphinx-book-theme | ||
pip install sphinxemoji | ||
pip install sphinx-copybutton | ||
pip install ipython | ||
pip install myst-parser | ||
pip install myst-nb | ||
pip install numpy | ||
pip install pandas | ||
pip install scipy | ||
pip install scikit-learn | ||
pip install matplotlib | ||
pip install mne | ||
pip install PyWavelets | ||
pip install EMD-signal | ||
pip install astropy | ||
pip install seaborn | ||
pip install EMD-signal | ||
pip install cvxopt | ||
pip install https://github.com/neuropsychology/neurokit/zipball/dev | ||
- name: Build documentation 📜 | ||
run: | | ||
cd docs | ||
sphinx-build -b html . _build | ||
- name: Deploy 🚀 | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./docs/_build |
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,42 @@ | ||
name: "📜 Documentation check" | ||
on: | ||
- pull_request | ||
|
||
jobs: | ||
docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
with: | ||
fetch-depth: 0 # To be able to push refs to destination repo | ||
- name: Set up Python 🐍 | ||
uses: actions/setup-python@v3 | ||
with: | ||
cache: 'pip' | ||
|
||
- name: Install dependencies 🏭 | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install sphinx-book-theme | ||
pip install sphinxemoji | ||
pip install sphinx-copybutton | ||
pip install ipython | ||
pip install myst-parser | ||
pip install myst-nb | ||
pip install numpy | ||
pip install pandas | ||
pip install scipy | ||
pip install scikit-learn | ||
pip install matplotlib | ||
pip install mne | ||
pip install PyWavelets | ||
pip install astropy | ||
pip install seaborn | ||
pip install EMD-signal | ||
pip install cvxopt | ||
pip install https://github.com/neuropsychology/neurokit/zipball/dev | ||
- name: Build documentation 📜 | ||
run: | | ||
cd docs | ||
sphinx-build -b html . _build |
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.