Skip to content

Commit 0836e42

Browse files
Bump Github VM MacOS-13 -> MacOS-14 (#13396)
1 parent d257261 commit 0836e42

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,17 +75,17 @@ jobs:
7575
- os: ubuntu-latest
7676
python: '3.13'
7777
kind: conda
78-
- os: macos-latest # arm64 (Apple Silicon)
78+
- os: macos-latest # arm64 (Apple Silicon): Sequoia
7979
python: '3.13'
8080
kind: mamba
81-
- os: macos-13 # latest Intel release
81+
- os: macos-14 # arm64 (Apple Silicon): Sonoma
8282
python: '3.13'
8383
kind: mamba
8484
- os: windows-latest
85-
python: '3.10'
85+
python: '3.11'
8686
kind: mamba
8787
- os: ubuntu-latest
88-
python: '3.10'
88+
python: '3.12'
8989
kind: minimal
9090
- os: ubuntu-22.04
9191
python: '3.10'
@@ -128,8 +128,11 @@ jobs:
128128
# For some reason on Linux we get crashes
129129
if [[ "$RUNNER_OS" == "Linux" ]]; then
130130
sed -i "/numba/d" environment.yml
131+
# And on Windows and macOS PySide6.9.0 segfaults
131132
elif [[ "$RUNNER_OS" == "macOS" ]]; then
132133
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
133136
fi
134137
if: matrix.kind == 'conda' || matrix.kind == 'mamba'
135138
- uses: mamba-org/setup-micromamba@v2
@@ -139,6 +142,7 @@ jobs:
139142
create-args: >-
140143
python=${{ env.PYTHON_VERSION }}
141144
if: ${{ !startswith(matrix.kind, 'pip') }}
145+
timeout-minutes: 20
142146
- run: bash ./tools/github_actions_dependencies.sh
143147
# Minimal commands on Linux (macOS stalls)
144148
- run: bash ./tools/get_minimal_commands.sh

0 commit comments

Comments
 (0)