Skip to content

Commit fae691c

Browse files
committed
ortools: Update to version 9.10
1 parent 206e1c5 commit fae691c

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

dependency_support/com_google_absl/com_google_absl.bzl

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414

1515
"""Registers Bazel workspaces for the GNU readline library."""
1616

17-
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
17+
load("@bazel_tools//tools/build_defs/repo:git.bzl", "new_git_repository")
1818
load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
1919

2020
def com_google_absl():
2121
maybe(
22-
git_repository,
22+
new_git_repository,
2323
name = "com_google_absl",
24-
tag = "20230125.3",
25-
patches = ["@com_google_ortools//patches:abseil-cpp-20230125.3.patch"],
24+
tag = "20240116.2",
25+
patches = ["@com_google_ortools//patches:abseil-cpp-20240116.2.patch"],
2626
patch_args = ["-p1"],
2727
remote = "https://github.com/abseil/abseil-cpp.git",
2828
)

dependency_support/com_google_ortools/com_google_ortools.bzl

+7-7
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,23 @@ def com_google_ortools():
2222
maybe(
2323
http_archive,
2424
name = "com_google_ortools",
25-
strip_prefix = "or-tools-9.7",
26-
urls = ["https://github.com/google/or-tools/archive/refs/tags/v9.7.tar.gz"],
27-
sha256 = "054d9517fc6c83f15150c93ef1c2c674ffd7d4a0d1fdc78f6ef8bc3e25c2e339",
25+
strip_prefix = "or-tools-9.10",
26+
urls = ["https://github.com/google/or-tools/archive/refs/tags/v9.10.tar.gz"],
27+
sha256 = "e7c27a832f3595d4ae1d7e53edae595d0347db55c82c309c8f24227e675fd378",
2828
)
2929
maybe(
3030
new_git_repository,
3131
name = "scip",
32-
build_file = "@com_google_ortools//bazel:scip.BUILD",
33-
patches = ["@com_google_ortools//bazel:scip.patch"],
32+
build_file = "@com_google_ortools//bazel:scip.BUILD.bazel",
33+
patches = ["@com_google_ortools//bazel:scip-v900.patch"],
3434
patch_args = ["-p1"],
35-
tag = "v803",
35+
tag = "v900",
3636
remote = "https://github.com/scipopt/scip.git",
3737
)
3838
maybe(
3939
http_archive,
4040
name = "bliss",
41-
build_file = "@com_google_ortools//bazel:bliss.BUILD",
41+
build_file = "@com_google_ortools//bazel:bliss.BUILD.bazel",
4242
patches = ["@com_google_ortools//bazel:bliss-0.73.patch"],
4343
sha256 = "f57bf32804140cad58b1240b804e0dbd68f7e6bf67eba8e0c0fa3a62fd7f0f84",
4444
url = "https://github.com/google/or-tools/releases/download/v9.0/bliss-0.73.zip",

dependency_support/com_google_protobuf/com_google_protobuf.bzl

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ def com_google_protobuf():
2121
maybe(
2222
http_archive,
2323
name = "com_google_protobuf",
24-
urls = ["https://github.com/protocolbuffers/protobuf/releases/download/v23.3/protobuf-23.3.tar.gz"],
25-
strip_prefix = "protobuf-23.3",
26-
integrity = "sha256-Ol9HrTqhAZLFV3/whrJLlzmjaTfDTOq225EqFqPvf44=",
24+
urls = ["https://github.com/protocolbuffers/protobuf/archive/refs/tags/v26.1.tar.gz"],
25+
strip_prefix = "protobuf-26.1",
26+
sha256 = "4fc5ff1b2c339fb86cd3a25f0b5311478ab081e65ad258c6789359cd84d421f8",
2727
patch_args = ["-p1"],
28-
patches = ["@com_google_ortools//patches:protobuf-v23.3.patch"],
28+
patches = ["@com_google_ortools//patches:protobuf-v26.1.patch"],
2929
)

0 commit comments

Comments
 (0)