Skip to content

Commit b61cb60

Browse files
committed
Actually use pybind11 3.0 in CI
The ubuntu pybind11-dev is still 2.x I believe, but since the part of pybind11 we use is backward compatible this is fine
1 parent 52dfd67 commit b61cb60

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/Build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Install Dependencies
3737
run: |
3838
conda install -c conda-forge qt6-main==6.8.3 ninja doxygen
39-
pip install pytest pybind11<3.0 numpy
39+
pip install pytest "pybind11>=3.0" numpy
4040
4141
- name: Configure MSVC console
4242
uses: ilammy/msvc-dev-cmd@v1
@@ -167,7 +167,7 @@ jobs:
167167
brew install qt6 ninja
168168
echo "CMAKE_PREFIX_PATH=$(brew --prefix qt@6)" >> $GITHUB_ENV
169169
pip install --upgrade pip
170-
pip install pytest "pybind11<3.0"
170+
pip install pytest "pybind11>=3.0"
171171
172172
- name: Configure CMake
173173
run: |

0 commit comments

Comments
 (0)