Skip to content

Commit

Permalink
Merge pull request scipy#21748 from vfdev-5/update-pybind11-
Browse files Browse the repository at this point in the history
MAINT: Updated pybind11 min version to 2.13.2
  • Loading branch information
rgommers authored Oct 25, 2024
2 parents c131c19 + 9ac51ca commit 3131732
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ build-backend = 'mesonpy'
requires = [
"meson-python>=0.15.0",
"Cython>=3.0.8", # when updating version, also update check in meson.build
"pybind11>=2.13.1", # when updating version, also update check in scipy/meson.build
"pybind11>=2.13.2", # when updating version, also update check in scipy/meson.build
"pythran>=0.14.0",

# numpy requirement for wheel builds for distribution on PyPI - building
Expand Down
2 changes: 1 addition & 1 deletion requirements/build.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Do not edit this file; modify `pyproject.toml` instead and run `python tools/generate_requirements.py`.
meson-python>=0.15.0
Cython>=3.0.8
pybind11>=2.13.1
pybind11>=2.13.2
pythran>=0.14.0
ninja
numpy>=1.23.5
2 changes: 1 addition & 1 deletion scipy/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ fortranobject_c = incdir_f2py / 'fortranobject.c'
npymath_path = _incdir_numpy_abs / '..' / 'lib'
npymath_lib = cc.find_library('npymath', dirs: npymath_path)

pybind11_dep = dependency('pybind11', version: '>=2.13.1')
pybind11_dep = dependency('pybind11', version: '>=2.13.2')

# Pythran include directory and build flags
if use_pythran
Expand Down

0 comments on commit 3131732

Please sign in to comment.