Skip to content

Commit 04a701d

Browse files
committed
WIP: Try free-threaded build [skip azp] [skip circle]
1 parent 68c56fe commit 04a701d

2 files changed

Lines changed: 24 additions & 23 deletions

File tree

.github/workflows/tests.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -67,29 +67,29 @@ jobs:
6767
matrix:
6868
include:
6969
- os: ubuntu-latest
70-
python: '3.13'
70+
python: '3.13t' # free-threaded
7171
kind: pip
72-
- os: ubuntu-latest
73-
python: '3.12'
74-
kind: pip-pre
75-
- os: ubuntu-latest
76-
python: '3.12'
77-
kind: conda
78-
- os: macos-latest # arm64 (Apple Silicon)
79-
python: '3.12'
80-
kind: mamba
81-
- os: macos-13 # latest Intel release
82-
python: '3.12'
83-
kind: mamba
84-
- os: windows-latest
85-
python: '3.10'
86-
kind: mamba
87-
- os: ubuntu-latest
88-
python: '3.10'
89-
kind: minimal
90-
- os: ubuntu-22.04
91-
python: '3.10'
92-
kind: old
72+
# - os: ubuntu-latest
73+
# python: '3.12'
74+
# kind: pip-pre
75+
# - os: ubuntu-latest
76+
# python: '3.12'
77+
# kind: conda
78+
# - os: macos-latest # arm64 (Apple Silicon)
79+
# python: '3.12'
80+
# kind: mamba
81+
# - os: macos-13 # latest Intel release
82+
# python: '3.12'
83+
# kind: mamba
84+
# - os: windows-latest
85+
# python: '3.10'
86+
# kind: mamba
87+
# - os: ubuntu-latest
88+
# python: '3.10'
89+
# kind: minimal
90+
# - os: ubuntu-22.04
91+
# python: '3.10'
92+
# kind: old
9393
steps:
9494
- uses: actions/checkout@v4
9595
with:

tools/github_actions_dependencies.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ if [ ! -z "$CONDA_ENV" ]; then
2121
STD_ARGS="--progress-bar off"
2222
fi
2323
elif [[ "${MNE_CI_KIND}" == "pip" ]]; then
24-
INSTALL_KIND="full-pyside6,$INSTALL_KIND"
24+
# This one is free-threaded so can't have numba as of 2025/07/15
25+
INSTALL_DEPS="nibabel scikit-learn numpydoc PySide6!=6.9.1 mne-qt-browser pandas h5io mffpy defusedxml numba pyvistaqt edfio mffpy"
2526
else
2627
test "${MNE_CI_KIND}" == "pip-pre"
2728
STD_ARGS="$STD_ARGS --pre"

0 commit comments

Comments
 (0)