Skip to content

Commit 371ec46

Browse files
authored
pybind11: v2.10.1 (#89)
This release adds a work-around for compiler bugs in Nvidia `nvcc` version 11.4 - 11.8, e.g., as used on Perlmutter (NERSC).
1 parent 16802d8 commit 371ec46

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ pyAMReX depends on the following popular third party software.
5454
- a mature [C++17](https://en.wikipedia.org/wiki/C%2B%2B17) compiler, e.g., GCC 8, Clang 7, NVCC 11.0, MSVC 19.15 or newer
5555
- [CMake 3.20.0+](https://cmake.org)
5656
- [AMReX *development*](https://amrex-codes.github.io): we automatically download and compile a copy of AMReX
57-
- [pybind11](https://github.com/pybind/pybind11/) 2.9.1+: we automatically download and compile a copy of pybind11 ([new BSD](https://github.com/pybind/pybind11/blob/master/LICENSE))
57+
- [pybind11](https://github.com/pybind/pybind11/) 2.10.1+: we automatically download and compile a copy of pybind11 ([new BSD](https://github.com/pybind/pybind11/blob/master/LICENSE))
5858
- [Python](https://python.org) 3.7+
5959
- [Numpy](https://numpy.org) 1.15+
6060

cmake/dependencies/pybind11.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function(find_pybind11)
3838
mark_as_advanced(FETCHCONTENT_UPDATES_DISCONNECTED_FETCHEDpybind11)
3939
endif()
4040
elseif(NOT pyAMReX_pybind11_internal)
41-
find_package(pybind11 2.9.1 CONFIG REQUIRED)
41+
find_package(pybind11 2.10.1 CONFIG REQUIRED)
4242
message(STATUS "pybind11: Found version '${pybind11_VERSION}'")
4343
endif()
4444
endfunction()
@@ -53,7 +53,7 @@ option(pyAMReX_pybind11_internal "Download & build pybind11" ON)
5353
set(pyAMReX_pybind11_repo "https://github.com/pybind/pybind11.git"
5454
CACHE STRING
5555
"Repository URI to pull and build pybind11 from if(pyAMReX_pybind11_internal)")
56-
set(pyAMReX_pybind11_branch "v2.9.1"
56+
set(pyAMReX_pybind11_branch "v2.10.1"
5757
CACHE STRING
5858
"Repository branch for pyAMReX_pybind11_repo if(pyAMReX_pybind11_internal)")
5959

0 commit comments

Comments
 (0)