diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ecd3ea4..1845483 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: matrix: config: [ {os: ubuntu-latest}, - {os: macos-14, arch: x86_64}, + {os: macos-13, arch: x86_64}, {os: macos-14, arch: arm64}, {os: windows-latest}, ] diff --git a/CMakeLists.txt b/CMakeLists.txt index df3cc9f..8cbc00c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ find_package(Ceres 2.1 REQUIRED) find_package(Python REQUIRED COMPONENTS Interpreter Development.Module) -find_package(pybind11 2.11.1 REQUIRED) +find_package(pybind11 2.13.0 REQUIRED) pybind11_add_module(pyceres _pyceres/bindings.cc) target_include_directories(pyceres PRIVATE ${PROJECT_SOURCE_DIR}) diff --git a/pyproject.toml b/pyproject.toml index 1f0de56..f7b07d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["scikit-build-core>=0.3.3", "pybind11==2.11.1"] +requires = ["scikit-build-core>=0.3.3", "pybind11==2.13.0"] build-backend = "scikit_build_core.build" [project]