Skip to content

Commit 5170d3c

Browse files
committed
Force GitHub runners to use x86-based machines for MacOS
1 parent b854bcc commit 5170d3c

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
build_wheels:
2323
strategy:
2424
matrix:
25-
os: [ubuntu-20.04, windows-latest, macos-latest]
25+
os: [ubuntu-20.04, windows-latest, macos-13]
2626
python: [cp38, cp39, cp310, cp311, cp312]
2727
cibw-arch: [x86_64, arm64]
2828
exclude:
@@ -34,7 +34,7 @@ jobs:
3434

3535
name: >
3636
${{ matrix.python }} wheel for ${{ matrix.os }}
37-
${{ (matrix.os == 'macos-latest' && format('({0})', matrix.cibw-arch)) || '' }}
37+
${{ (matrix.os == 'macos-13' && format('({0})', matrix.cibw-arch)) || '' }}
3838
runs-on: ${{ matrix.os }}
3939

4040
steps:

docs/release_notes.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,15 @@ strive to document breaking API changes in the release notes below.
88
Upcoming release
99
----------------
1010

11+
Most likely the last release relying on Pybind11
12+
1113
- Fix wavefront loops which would occasionally create new kernels
1214
`[8f09760] <https://github.com/mitsuba-renderer/drjit/commit/8f0976008f3662756bb078f713e383a98f944e1d>`_
1315
- Fix source of CUDA segfaults
1416
`[9aa2d87] <https://github.com/mitsuba-renderer/drjit/commit/9aa2d87a98be303368f991581ad5297782cba85a>`_
1517
- In C++ ``dr::binary_search`` could unexpectedly create new kernels
1618
`[b48701e] <https://github.com/mitsuba-renderer/drjit/commit/b48701e713511526824a4675b30245d606ee33e5>`_
17-
- Minor chanes to support Nvidia v555 drivers
19+
- Minor changes to support Nvidia v555 drivers
1820
`[216d921] <https://github.com/mitsuba-renderer/drjit/commit/216d921797f49ecad7e2bff44ac7cd6089b5cded>`_
1921

2022

0 commit comments

Comments
 (0)