Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmake/dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ FetchContent_Declare(
FetchContent_Declare(
pybind11
GIT_REPOSITORY https://github.com/pybind/pybind11.git
GIT_TAG 5b0a6fc2017fcc176545afe3e09c9f9885283242 # v2.10.4
GIT_TAG 8a099e44b3d5f85b20f05828d919d2332a8de841 # v2.11.1
GIT_SHALLOW TRUE
)

Expand Down
2 changes: 1 addition & 1 deletion doc/BuildingHalideWithCMake.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ building the core pieces of Halide.
| [wabt] | `==1.0.36` | `Halide_WASM_BACKEND=wabt` | Does not have a stable API; exact version required. |
| [V8] | trunk | `Halide_WASM_BACKEND=V8` | Difficult to build. See [WebAssembly.md] |
| [Python] | `>=3.8` | `WITH_PYTHON_BINDINGS=ON` | |
| [pybind11] | `~=2.10.4` | `WITH_PYTHON_BINDINGS=ON` | |
| [pybind11] | `~=2.11.1` | `WITH_PYTHON_BINDINGS=ON` | |

Halide maintains the following compatibility policy with LLVM: Halide version
`N` supports LLVM versions `N`, `N-1`, and `N-2`. Our binary distributions
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[build-system]
requires = [
"scikit-build-core==0.10.5",
"pybind11==2.10.4",
"pybind11==2.11.1",
]
build-backend = "scikit_build_core.build"

Expand Down
2 changes: 1 addition & 1 deletion python_bindings/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ cmake_dependent_option(
find_package(Python 3.8 REQUIRED Interpreter Development.Module)

if (WITH_PYTHON_BINDINGS)
find_package(pybind11 2.10.4 REQUIRED)
find_package(pybind11 2.11.1 REQUIRED)
endif ()

# Note: this must happen, especially when WITH_PYTHON_BINDINGS is OFF.
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ imageio
ninja
numpy
pillow
pybind11==2.10.4
pybind11==2.11.1
scikit-build-core==0.10.5
scipy
setuptools>=43
Expand Down