Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ jobs:

strategy:
matrix:
# macos-13 is an intel runner, macos-14 is apple silicon
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-15-intel, macos-latest]

name: Build wheels ${{ matrix.os }}
runs-on: ${{ matrix.os }}
Expand All @@ -34,7 +33,7 @@ jobs:
python -m build --sdist

- name: Run cibuildwheel
uses: pypa/cibuildwheel@v2.21
uses: pypa/cibuildwheel@v3.3.1
with:
config-file: ".github/workflows/cibuildwheel_config.toml"

Expand Down Expand Up @@ -68,7 +67,7 @@ jobs:
id-token: write
steps:
- name: Download built wheels artifact # downloads from the jobs storage from the previous step
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4.2.1
with:
# omitting the `name: ` field downloads all artifacts from this workflow
path: dist
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/test_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ jobs:
strategy:
fail-fast: false
matrix:
# macos-13 is an intel runner, macos-14 is apple silicon
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-15-intel, macos-latest]

name: Build wheels ${{ matrix.os }}
runs-on: ${{ matrix.os }}
Expand All @@ -38,7 +37,7 @@ jobs:
python -m build --sdist

- name: Run cibuildwheel
uses: pypa/cibuildwheel@v2.21
uses: pypa/cibuildwheel@v3.3.1
with:
config-file: ".github/workflows/cibuildwheel_config.toml"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
submodules: 'recursive'

- uses: actions/setup-python@v2
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.9'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
submodules: 'recursive'

- uses: actions/setup-python@v2
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.9'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
with:
submodules: 'recursive'

- uses: actions/setup-python@v2
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.7'
python-version: '3.9'

- name: install python packages
run: python -m pip install numpy scipy
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.1.0)
cmake_minimum_required(VERSION 3.5.0)
project(robust-laplacian-py)

# Recurse in to pybind
Expand Down
2 changes: 1 addition & 1 deletion deps/pybind11
Submodule pybind11 updated 282 files
Loading