diff --git a/.github/workflows/release_wheels.yml b/.github/workflows/release_wheels.yml index 42f1c619..639ca8a0 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 73d4a3f7..6e95345e 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 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