cmake: bump dependencies

* abseil-cpp 20250512.0
* protobuf v31.0
* re2 2024-07-02
* googletest 1.17.0
* benchmark 1.9.2

devNote: to fix a patch not working
```sh
cd ~/.../ortools_repo
cmake -S. -Bbuild -DBUILD_DEPS=ON -DBUILD_EXAMPLES=OFF -DBUILD_SAMPLES=OFF -DBUILD_TESTING=ON
pushd build/_deps/absl-src
git apply --3way ~/.../ortools_repo/patches/abseil-cpp-20250512.0.patch
git mergetool
git diff HEAD -u > ~/.../ortools_repo/patches/abseil-cpp-20250512.0.patch
cd ..
rm -rf absl-*
popd
<repeat>
```
This commit is contained in:
Corentin Le Molgat
2025-05-21 17:44:15 +02:00
committed by Mizux Seiha
parent ed1b05d1d8
commit cfefe417a0
13 changed files with 41 additions and 120 deletions

View File

@@ -46,7 +46,7 @@ setup(
'absl-py >= 2.0.0',
'numpy >= 1.13.3',
'pandas >= 2.0.0',
'protobuf >= 6.30.2,<6.31',
'protobuf >= 6.31.0,<6.32',
'typing-extensions >= 4.12',
'immutabledict >= 3.0.0',
],