From 1201c5cf9b5cbbab4d37efa4eb085a4f6cb5f20e Mon Sep 17 00:00:00 2001 From: Gene Hoffman Date: Wed, 27 Jan 2021 11:41:26 -0800 Subject: [PATCH] Try pybind 2.6.2 for py 3.9.0 issue --- .github/workflows/build-aarch64.yml | 5 +++-- .github/workflows/build.yml | 7 ++++--- src/CMakeLists.txt | 2 +- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-aarch64.yml b/.github/workflows/build-aarch64.yml index 2239d5b3..50120990 100644 --- a/.github/workflows/build-aarch64.yml +++ b/.github/workflows/build-aarch64.yml @@ -13,7 +13,8 @@ jobs: steps: - name: Cancel previous runs on the same branch - uses: styfle/cancel-workflow-action@0.6.0 + if: ${{ github.ref != 'refs/heads/master' }} + uses: styfle/cancel-workflow-action@0.7.0 with: access_token: ${{ github.token }} @@ -41,7 +42,7 @@ jobs: source venv/bin/activate python -m pip install --upgrade pip pip install wheel - pip install cibuildwheel==1.7.2 + pip install cibuildwheel==1.8.0 - name: Lint source with flake8 run: | diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7279fa9a..294c8263 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,8 @@ jobs: steps: - name: Cancel previous runs on the same branch - uses: styfle/cancel-workflow-action@0.6.0 + if: ${{ github.ref != 'refs/heads/master' }} + uses: styfle/cancel-workflow-action@0.7.0 with: access_token: ${{ github.token }} @@ -25,7 +26,7 @@ jobs: - uses: actions/setup-python@v2 name: Install Python with: - python-version: '3.7' + python-version: '3.8' - name: Test for secrets access id: check_secrets @@ -40,7 +41,7 @@ jobs: - name: Install cibuildwheel run: | python -m pip install --upgrade pip - pip install cibuildwheel==1.7.3 + pip install cibuildwheel==1.8.0 - name: Lint source with flake8 run: | diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index bf768de2..c9751281 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -32,7 +32,7 @@ include(FetchContent) FetchContent_Declare( pybind11-src GIT_REPOSITORY https://github.com/pybind/pybind11.git - GIT_TAG v2.5.0 + GIT_TAG v2.6.2 ) FetchContent_MakeAvailable(pybind11-src)