-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
71 changed files
with
622 additions
and
440 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
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,51 @@ | ||
# Upload a Python Package using Twine when a release is created | ||
|
||
name: build | ||
on: # yamllint disable-line rule:truthy | ||
release: | ||
types: [published] | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
package: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.12' | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install build twine | ||
- run: python -m build --sdist --wheel | ||
- run: twine check --strict dist/* | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: dist | ||
path: dist | ||
|
||
pypi-upload: | ||
needs: package | ||
runs-on: ubuntu-latest | ||
if: github.event_name == 'release' | ||
permissions: | ||
id-token: write # for trusted publishing | ||
environment: | ||
name: pypi | ||
url: https://pypi.org/p/mne | ||
steps: | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: dist | ||
path: dist | ||
- uses: pypa/gh-action-pypi-publish@release/v1 | ||
if: github.event_name == 'release' |
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
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
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 |
---|---|---|
|
@@ -3,11 +3,10 @@ | |
Inspired by MNE-Python's `gen_commands.py` | ||
see: github.com/mne-tools/mne-python/blob/main/doc/sphinxext/gen_commands.py | ||
""" | ||
# Authors: Eric Larson <[email protected]> | ||
# Alexandre Gramfort <[email protected]> | ||
# Stefan Appelhoff <[email protected]> | ||
# | ||
# License: BSD-3-Clause | ||
|
||
# Authors: The MNE-BIDS developers | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
|
||
import glob | ||
import os | ||
import shutil | ||
|
@@ -44,14 +43,14 @@ def setup(app): | |
|
||
command_rst = """ | ||
.. _gen_%s: | ||
.. _gen_{0}: | ||
%s | ||
%s | ||
{1} | ||
{2} | ||
.. rst-class:: callout | ||
%s | ||
{3} | ||
""" | ||
|
||
|
@@ -92,7 +91,7 @@ def generate_cli_rst(app=None): | |
# Add code styling for the "Usage: " line | ||
for li, line in enumerate(output): | ||
if line.startswith("Usage: mne_bids "): | ||
output[li] = "Usage: ``%s``" % line[7:] | ||
output[li] = f"Usage: ``{line[7:]}``" | ||
break | ||
|
||
# Turn "Options:" into field list | ||
|
@@ -105,8 +104,7 @@ def generate_cli_rst(app=None): | |
output.insert(ii + 4, "") | ||
output = "\n".join(output) | ||
f.write( | ||
command_rst | ||
% ( | ||
command_rst.format( | ||
cmd_name, | ||
cmd_name.replace("mne_bids_", "mne_bids "), | ||
"=" * len(cmd_name), | ||
|
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.