File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -75,17 +75,17 @@ jobs:
75
75
- os : ubuntu-latest
76
76
python : ' 3.13'
77
77
kind : conda
78
- - os : macos-latest # arm64 (Apple Silicon)
78
+ - os : macos-latest # arm64 (Apple Silicon): Sequoia
79
79
python : ' 3.13'
80
80
kind : mamba
81
- - os : macos-13 # latest Intel release
81
+ - os : macos-14 # arm64 (Apple Silicon): Sonoma
82
82
python : ' 3.13'
83
83
kind : mamba
84
84
- os : windows-latest
85
- python : ' 3.10 '
85
+ python : ' 3.11 '
86
86
kind : mamba
87
87
- os : ubuntu-latest
88
- python : ' 3.10 '
88
+ python : ' 3.12 '
89
89
kind : minimal
90
90
- os : ubuntu-22.04
91
91
python : ' 3.10'
@@ -128,8 +128,11 @@ jobs:
128
128
# For some reason on Linux we get crashes
129
129
if [[ "$RUNNER_OS" == "Linux" ]]; then
130
130
sed -i "/numba/d" environment.yml
131
+ # And on Windows and macOS PySide6.9.0 segfaults
131
132
elif [[ "$RUNNER_OS" == "macOS" ]]; then
132
133
sed -i "" "s/ - PySide6 .*/ - PySide6 <6.8/g" environment.yml
134
+ elif [[ "$RUNNER_OS" == "Windows" ]]; then
135
+ sed -i "s/ - PySide6 .*/ - PySide6 <6.8/g" environment.yml
133
136
fi
134
137
if : matrix.kind == 'conda' || matrix.kind == 'mamba'
135
138
- uses : mamba-org/setup-micromamba@v2
@@ -139,6 +142,7 @@ jobs:
139
142
create-args : >-
140
143
python=${{ env.PYTHON_VERSION }}
141
144
if : ${{ !startswith(matrix.kind, 'pip') }}
145
+ timeout-minutes : 20
142
146
- run : bash ./tools/github_actions_dependencies.sh
143
147
# Minimal commands on Linux (macOS stalls)
144
148
- run : bash ./tools/get_minimal_commands.sh
You can’t perform that action at this time.
0 commit comments