Skip to content

Commit

Permalink
Try pybind 2.6.2 for py 3.9.0 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffmang9 committed Jan 27, 2021
1 parent 880410a commit 1201c5c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ jobs:

steps:
- name: Cancel previous runs on the same branch
uses: styfle/[email protected]
if: ${{ github.ref != 'refs/heads/master' }}
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}

Expand Down Expand Up @@ -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: |
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ jobs:

steps:
- name: Cancel previous runs on the same branch
uses: styfle/[email protected]
if: ${{ github.ref != 'refs/heads/master' }}
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}

Expand All @@ -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
Expand All @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 1201c5c

Please sign in to comment.