@@ -4,21 +4,19 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
44
55http_archive (
66 name = "bazel_skylib" ,
7- sha256 = "97e70364e9249702246c0e9444bccdc4b847bed1eb03c5a3ece4f83dfe6abc44" ,
87 urls = [
9- "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.0.2/bazel-skylib-1.0.2.tar.gz" ,
10- "https://github.com/bazelbuild/bazel-skylib/releases/download/1.0.2/bazel-skylib-1.0.2.tar.gz" ,
8+ "https://github.com/bazelbuild/bazel-skylib/releases/download/1.9.0/bazel-skylib-1.9.0.tar.gz" ,
119 ],
1210)
1311
14- _PROTOBUF_VERSION = "4.25.6 "
12+ _PROTOBUF_VERSION = "6.31.1 "
1513
1614http_archive (
1715 name = "com_google_protobuf" ,
18- sha256 = "ff6e9c3db65f985461d200c96c771328b6186ee0b10bc7cb2bbc87cf02ebd864 " ,
16+ sha256 = "6e09bbc950ba60c3a7b30280210cd285af8d7d8ed5e0a6ed101c72aff22e8d88 " ,
1917 strip_prefix = "protobuf-%s" % _PROTOBUF_VERSION ,
2018 urls = [
21- "https://github.com/protocolbuffers/protobuf/archive/v%s.zip" % _PROTOBUF_VERSION ,
19+ "https://github.com/protocolbuffers/protobuf/archive/refs/tags/ v%s.zip" % _PROTOBUF_VERSION ,
2220 ],
2321)
2422
4543 actual = "@six_archive//:six" ,
4644)
4745
46+ http_archive (
47+ name = "rules_python" ,
48+ urls = ["https://github.com/bazelbuild/rules_python/archive/refs/tags/0.31.0.tar.gz" ],
49+ strip_prefix = "rules_python-0.31.0" ,
50+ )
51+
52+ load ("@rules_python//python:repositories.bzl" , "py_repositories" )
53+ py_repositories ()
54+
55+ local_repository (
56+ name = "compatibility_proxy" ,
57+ path = "third_party/dummy_compatibility_proxy" ,
58+ )
59+
4860load ("@com_google_protobuf//:protobuf_deps.bzl" , "protobuf_deps" )
4961protobuf_deps ()
5062
5163load ("@bazel_skylib//lib:versions.bzl" , "versions" )
52- versions .check ("6.5.0 " )
64+ versions .check ("7.4.1 " )
0 commit comments