Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/spec_zero.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:
env:
GH_TOKEN: ${{ secrets.MNE_BOT_TOKEN }}
GITHUB_TOKEN: ${{ secrets.MNE_BOT_TOKEN }}
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v6
with:
Expand Down Expand Up @@ -49,6 +52,11 @@ jobs:
echo "dirty=true" >> $GITHUB_OUTPUT
fi
id: status
- name: Run pre-commit hooks to update other files
run: |
pip install pre-commit
pre-commit run --all
if: steps.status.outputs.dirty == 'true'
- name: Create PR
run: |
set -xeo pipefail
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ dependencies:
- PySide6 !=6.9.1
- python-neo
- python-picard
- pyvista >=0.42.1
- pyvista >=0.43
- pyvistaqt >=0.11
- qdarkstyle !=3.2.2
- qtpy
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ full-no-qt = [
"pybv",
"pyobjc-framework-Cocoa >= 5.2.0; platform_system == 'Darwin'",
"python-picard",
"pyvista >= 0.42.1", # released 2023-09-06, will become 0.43 on 2025-12-06
"pyvista >= 0.43", # released 2023-12-07, will become 0.44 on 2026-07-07
"pyvistaqt >= 0.11", # released 2023-06-30, no newer version available
"qdarkstyle != 3.2.2",
"qtpy",
Expand Down
Loading