-
-
Notifications
You must be signed in to change notification settings - Fork 429
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 #645 from neuropsychology/dev
0.2.1
- Loading branch information
Showing
290 changed files
with
59,502 additions
and
2,003,046 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 +1,2 @@ | ||
scripts/* linguist-vendored | ||
scripts/* linguist-vendored | ||
*.ipynb linguist-language=Python |
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,17 +1,17 @@ | ||
# Number of days of inactivity before an issue becomes stale | ||
daysUntilStale: 180 | ||
# Number of days of inactivity before a stale issue is closed | ||
daysUntilClose: 180 | ||
# Issues with these labels will never be considered stale | ||
exemptLabels: | ||
- feature idea 🔥 | ||
- bug 🐛 | ||
# Label to use when marking an issue as stale | ||
staleLabel: inactive 👻 | ||
# Comment to post when marking an issue as stale. Set to `false` to disable | ||
markComment: > | ||
This issue has been automatically marked as inactive because it has not had | ||
recent activity. It will eventually be closed if no further activity occurs. | ||
# Comment to post when closing a stale issue. Set to `false` to disable | ||
closeComment: > | ||
This issue has been inactive for a long time. We're closing it (but feel free to reopen it if need be). | ||
# # Number of days of inactivity before an issue becomes stale | ||
# daysUntilStale: 180 | ||
# # Number of days of inactivity before a stale issue is closed | ||
# daysUntilClose: 180 | ||
# # Issues with these labels will never be considered stale | ||
# exemptLabels: | ||
# - feature idea 🔥 | ||
# - bug 🐛 | ||
# # Label to use when marking an issue as stale | ||
# staleLabel: inactive 👻 | ||
# # Comment to post when marking an issue as stale. Set to `false` to disable | ||
# markComment: > | ||
# This issue has been automatically marked as inactive because it has not had | ||
# recent activity. It will eventually be closed if no further activity occurs. | ||
# # Comment to post when closing a stale issue. Set to `false` to disable | ||
# closeComment: > | ||
# This issue has been inactive for a long time. We're closing it (but feel free to reopen it if need be). |
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 |
---|---|---|
@@ -1,56 +1,56 @@ | ||
name: "📜 Documentation builder" | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
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' | ||
docs: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 # To be able to push refs to destination repo | ||
- name: Set up Python 🐍 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.10" | ||
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: 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: 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 | ||
- 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 |
---|---|---|
@@ -1,42 +1,44 @@ | ||
name: "📜 Documentation check" | ||
on: | ||
- pull_request | ||
- 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' | ||
docs: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 # To be able to push refs to destination repo | ||
- name: Set up Python 🐍 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.10" | ||
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: Install dependencies 🏭 | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install sphinx | ||
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 | ||
- name: Build documentation 📜 | ||
run: | | ||
cd docs | ||
sphinx-build -b html . _build |
Oops, something went wrong.