Skip to content

Commit d18d7e4

Browse files
committed
Update GitHub workflows to use macos-latest
1 parent ff85fae commit d18d7e4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
os: [ubuntu-22.04, macos-13]
19+
os: [ubuntu-22.04, macos-latest]
2020

2121
steps:
2222
- uses: actions/checkout@v4
@@ -37,7 +37,7 @@ jobs:
3737
# Use uv for faster dependency installation (10-100x faster than pip)
3838
CIBW_BUILD_FRONTEND: "build[uv]"
3939

40-
# macOS: Build Universal2 wheels on Intel runner (macos-13)
40+
# macOS: Build Universal2 wheels on arm64 runner (macos-latest)
4141
CIBW_ARCHS_MACOS: "universal2"
4242
CIBW_TEST_COMMAND: 'python -c "import netgraph_core; print(netgraph_core.__version__)"'
4343
CIBW_BEFORE_ALL_LINUX: "yum install -y libatomic || (apt-get update && apt-get install -y libatomic1) || apk add libatomic"

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Tests
22

33
on:
44
push:
5-
branches: [ main, master ]
5+
branches: [main, master]
66
pull_request:
77
workflow_dispatch:
88

@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
os: [ubuntu-22.04, macos-13]
16+
os: [ubuntu-22.04, macos-latest]
1717
python-version: ["3.11", "3.12", "3.13"]
1818
steps:
1919
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)