Skip to content
Open
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 livekit-plugins/livekit-blingfire/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=61.0", "pybind11"]
requires = ["setuptools>=61.0", "pybind11>=2.13.6,<3.0"]
build-backend = "setuptools.build_meta"

[tool.cibuildwheel.macos]
Expand Down
2 changes: 2 additions & 0 deletions livekit-plugins/livekit-blingfire/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import sys
from pathlib import Path

import pybind11
import setuptools
from setuptools import Extension
from setuptools.command.build_ext import build_ext
Expand Down Expand Up @@ -48,6 +49,7 @@ def build_extension(self, ext: CMakeExtension) -> None:
f"-DPYTHON_EXECUTABLE={sys.executable}",
"-DCMAKE_BUILD_TYPE=Release",
"-DCMAKE_POLICY_VERSION_MINIMUM=3.5",
f"-Dpybind11_DIR={pybind11.get_cmake_dir()}",
]

print(f"cmake_args: {cmake_args}")
Expand Down