Skip to content
This repository was archived by the owner on Dec 9, 2025. It is now read-only.

Commit cfb8b3d

Browse files
anandoleecopybara-github
authored andcommitted
Update upb deps and remove testAddTypeError test in python upb
PiperOrigin-RevId: 538930281
1 parent be58dea commit cfb8b3d

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

bazel/workspace_deps.bzl

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ def upb_deps():
1515
_github_archive,
1616
name = "com_google_absl",
1717
repo = "https://github.com/abseil/abseil-cpp",
18-
commit = "b971ac5250ea8de900eae9f95e06548d14cd95fe", # Abseil LTS 20230125.2
19-
sha256 = "f7c2cb2c5accdcbbbd5c0c59f241a988c0b1da2a3b7134b823c0bd613b1a6880",
18+
commit = "c2435f8342c2d0ed8101cb43adfd605fdc52dca2", # Abseil LTS 20230125.3
19+
sha256 = "ea1d31db00eb37e607bfda17ffac09064670ddf05da067944c4766f517876390",
2020
)
2121

2222
maybe(
2323
_github_archive,
2424
name = "com_google_protobuf",
2525
repo = "https://github.com/protocolbuffers/protobuf",
26-
commit = "859410bccc59aeeef1c48e34960fe93827767bac",
27-
sha256 = "64829c7a42556d3b6a3e19908abc98c0bd920823ac7546ca5372903a53a0acea",
26+
commit = "947d4c37cfa923be629b8693b610403092edfc49",
27+
sha256 = "6c9d46bf758b3c5f9f04b4a60caee567f8a9aca789b4cd3865e3d40902365c7f",
2828
patches = ["@upb//bazel:protobuf.patch"],
2929
)
3030

@@ -57,8 +57,11 @@ def upb_deps():
5757
maybe(
5858
http_archive,
5959
name = "bazel_skylib",
60-
strip_prefix = "bazel-skylib-main",
61-
urls = ["https://github.com/bazelbuild/bazel-skylib/archive/main.tar.gz"],
60+
urls = [
61+
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
62+
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
63+
],
64+
sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
6265
)
6366

6467
#Python Downloads

python/pb_unit_tests/descriptor_pool_test_wrapper.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,8 @@
2424
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2525

2626
import unittest
27-
from google.protobuf.internal import api_implementation
2827
from google.protobuf.internal.descriptor_pool_test import *
2928

30-
AddDescriptorTest.testAddTypeError.__unittest_skip__ = True
31-
3229
SecondaryDescriptorFromDescriptorDB.testErrorCollector.__unittest_expecting_failure__ = True
3330

3431
# begin:github_only

0 commit comments

Comments
 (0)