Skip to content

Commit 6f48941

Browse files
committed
bazel: backport cleanup from main
1 parent ef13f51 commit 6f48941

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

.bazelrc

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Enable logging rc options.
2+
common --announce_rc
3+
14
# ----CONFIG OPTIONS----
25
build --flag_alias=with_bop=//ortools/linear_solver:with_bop
36
build --flag_alias=with_cbc=//ortools/linear_solver:with_cbc

MODULE.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ bazel_dep(name = "googletest", version = "1.15.2", repo_name = "com_google_googl
2626
bazel_dep(name = "highs", version = "1.9.0")
2727
bazel_dep(name = "platforms", version = "0.0.10")
2828
bazel_dep(name = "protobuf", version = "29.2", repo_name = "com_google_protobuf")
29-
bazel_dep(name = "pybind11_abseil", version = "202402.0", repo_name = "org_pybind11_abseil")
29+
bazel_dep(name = "pybind11_abseil", version = "202402.0")
3030
bazel_dep(name = "pybind11_bazel", version = "2.13.6")
3131
bazel_dep(name = "pybind11_protobuf", version = "0.0.0-20240524-1d7a729")
3232
bazel_dep(name = "re2", version = "2024-07-02", repo_name = "com_google_re2")

ortools/math_opt/core/python/BUILD.bazel

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ pybind_extension(
5252
"//ortools/util:solve_interrupter",
5353
"@com_google_absl//absl/memory",
5454
"@com_google_absl//absl/status:statusor",
55-
"@org_pybind11_abseil//pybind11_abseil:import_status_module",
56-
"@org_pybind11_abseil//pybind11_abseil:status_casters",
55+
"@pybind11_abseil//pybind11_abseil:import_status_module",
56+
"@pybind11_abseil//pybind11_abseil:status_casters",
5757
"@pybind11_protobuf//pybind11_protobuf:native_proto_caster",
5858
],
5959
)

ortools/math_opt/io/python/BUILD.bazel

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ pybind_extension(
2525
"//ortools/math_opt:model_update_cc_proto",
2626
"//ortools/math_opt:result_cc_proto",
2727
"//ortools/math_opt/io:mps_converter",
28-
"@org_pybind11_abseil//pybind11_abseil:import_status_module",
29-
"@org_pybind11_abseil//pybind11_abseil:status_casters",
28+
"@pybind11_abseil//pybind11_abseil:import_status_module",
29+
"@pybind11_abseil//pybind11_abseil:status_casters",
3030
"@pybind11_protobuf//pybind11_protobuf:native_proto_caster",
3131
],
3232
)

patches/BUILD.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
exports_files([
1515
"abseil-cpp-20240722.0.patch",
16-
"highs-v1.8.1.patch",
16+
"highs-v1.9.0.patch",
1717
"protobuf-v29.2.patch",
1818
"pybind11_abseil.patch",
1919
"pybind11_protobuf.patch",

0 commit comments

Comments
 (0)