Skip to content

Commit

Permalink
Update install.sh: Fix pybind11 to a specific commit on smart_holder …
Browse files Browse the repository at this point in the history
…branch
  • Loading branch information
lanctot authored Feb 26, 2025
1 parent 7e1673b commit dc2846f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions open_spiel/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,12 @@ function cached_clone() {
DIR="./pybind11"
if [[ ! -d ${DIR} ]]; then
cached_clone -b smart_holder --single-branch --depth 1 https://github.com/pybind/pybind11.git ${DIR}
# Fix to a specific commit of the v2 smart_holder branch before merge into master for v3
# See discussion on https://github.com/pybind/pybind11/pull/5542
# We will wait for Google to pull in v3 to move this to v3 as there will be nontrivial fixes involved
pushd ${DIR}
git checkout 'aed215c4d49532a1b162ea11cd96f77bd3540fed'
popd
fi

# The official https://github.com/dds-bridge/dds.git seems to not accept PR,
Expand Down

0 comments on commit dc2846f

Please sign in to comment.