diff --git a/.github/workflows/release_wheels.yml b/.github/workflows/release_wheels.yml index 42f1c6190..639ca8a00 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 73d4a3f76..6e95345e4 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 e60d20daf..e8516a0b8 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