Skip to content

Commit 52bc0bb

Browse files
committed
temporarily enforce pip 25.1.1
1 parent 7d5b6b9 commit 52bc0bb

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ jobs:
2727
python-version: '3.13'
2828
- name: Install dependencies
2929
run: |
30-
python -m pip install --upgrade pip
31-
pip install build twine
30+
python -m pip install --upgrade pip==25.1.1
31+
pip check
32+
python -m pip install build twine
3233
- run: python -m build --sdist --wheel
3334
- run: twine check --strict dist/*
3435
- uses: actions/upload-artifact@v4

.github/workflows/unit_tests.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ jobs:
3535
key: style-0-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}
3636
- name: Install dependencies
3737
run: |
38-
python -m pip install --upgrade pip
38+
python -m pip install --upgrade pip==25.1.1
39+
pip check
3940
python -m pip install ruff
4041
- name: Display versions and environment information
4142
run: |
@@ -64,7 +65,8 @@ jobs:
6465

6566
- name: Install dependencies
6667
run: |
67-
python -m pip install --upgrade pip
68+
python -m pip install --upgrade pip==25.1.1
69+
pip check
6870
python -m pip install build twine
6971
7072
- uses: actions/checkout@v4
@@ -196,7 +198,8 @@ jobs:
196198
- name: Install Python dependencies using pip
197199
# This would be nicer once this feature is implemented: https://github.com/pypa/pip/issues/11440
198200
run: |
199-
python -m pip install --upgrade pip
201+
python -m pip install --upgrade pip==25.1.1
202+
pip check
200203
python -m pip install -e .[test]
201204
202205
- name: Install MNE (stable)
@@ -315,7 +318,8 @@ jobs:
315318
key: build_docs-1-${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}
316319
- name: Install dependencies
317320
run: |
318-
python -m pip install --upgrade pip
321+
python -m pip install --upgrade pip==25.1.1
322+
pip check
319323
python -m pip install --upgrade https://github.com/mne-tools/mne-python/archive/refs/heads/main.zip
320324
python -m pip install -e .[test,doc]
321325
- name: Build the documentation

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/astral-sh/ruff-pre-commit
3-
rev: v0.11.6
3+
rev: v0.11.8
44
hooks:
55
- id: ruff
66
name: ruff mne_bids/

0 commit comments

Comments
 (0)