From 60beafc32c8cf9340558f74ceb4e026984e8fa31 Mon Sep 17 00:00:00 2001 From: vtomole Date: Wed, 3 May 2023 15:29:53 -0500 Subject: [PATCH 1/2] Update cibuildwheel version --- .github/workflows/release_wheels.yml | 2 +- .github/workflows/testing_wheels.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release_wheels.yml b/.github/workflows/release_wheels.yml index 5463f5ce..94e5feda 100644 --- a/.github/workflows/release_wheels.yml +++ b/.github/workflows/release_wheels.yml @@ -47,7 +47,7 @@ jobs: - uses: actions/setup-python@v2 - name: Install cibuildwheel and twine - run: python -m pip install cibuildwheel==2.2.2 + run: python -m pip install cibuildwheel==2.12.3 - name: Install requirements run: python -m pip install -r requirements.txt diff --git a/.github/workflows/testing_wheels.yml b/.github/workflows/testing_wheels.yml index e63671f5..c6d73f7a 100644 --- a/.github/workflows/testing_wheels.yml +++ b/.github/workflows/testing_wheels.yml @@ -52,7 +52,7 @@ jobs: - uses: actions/setup-python@v2 - name: Install cibuildwheel and twine - run: python -m pip install cibuildwheel==2.2.2 + run: python -m pip install cibuildwheel==2.12.3 - name: Install requirements run: python -m pip install -r requirements.txt From 66156252b6d87634641093d40a08d9fd0045515c Mon Sep 17 00:00:00 2001 From: vtomole Date: Wed, 3 May 2023 16:02:29 -0500 Subject: [PATCH 2/2] Update min pybind --- pybind_interface/GetPybind11.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pybind_interface/GetPybind11.cmake b/pybind_interface/GetPybind11.cmake index e60d20da..e8516a0b 100644 --- a/pybind_interface/GetPybind11.cmake +++ b/pybind_interface/GetPybind11.cmake @@ -1,6 +1,6 @@ include(FetchContent) -set(MIN_PYBIND_VERSION "2.8.1") +set(MIN_PYBIND_VERSION "2.10.1") FetchContent_Declare( pybind11 GIT_REPOSITORY https://github.com/pybind/pybind11