Skip to content

Commit 6fb447d

Browse files
zeevdrclaude
andauthored
chore(deps): ignore grpcio-tools>=1.82.1 pending protobuf 7 migration (#175)
grpcio-tools 1.82.1 raised its own floor to protobuf>=7.35.1, which conflicts with our protobuf<7 pin in sdk/pyproject.toml (broke decree-python#174). The existing protobuf>=7 ignore rule assumed a future grpcio-tools release would support protobuf 7.x while retaining protobuf<7 support; it didn't, it just moved forward. Ignore grpcio-tools>=1.82.1 too, until we deliberately migrate to protobuf 7. Refs #174 Co-authored-by: Claude <noreply@anthropic.com>
1 parent bb2a713 commit 6fb447d

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/dependabot.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,15 @@ updates:
1616
- minor
1717
- patch
1818
ignore:
19-
# grpcio-tools 1.81.1 (latest) caps protobuf<7; unignore once a
20-
# grpcio-tools release supports protobuf 7.x.
19+
# protobuf is capped <7 by our own pyproject.toml pin; unignore once we
20+
# deliberately migrate the SDK to protobuf 7.x.
2121
- dependency-name: "protobuf"
2222
versions: [">=7"]
23+
# grpcio-tools 1.82.1 raised its own floor to protobuf>=7.35.1,
24+
# incompatible with our protobuf<7 pin (decree-python#174). Unignore
25+
# together with the protobuf migration above.
26+
- dependency-name: "grpcio-tools"
27+
versions: [">=1.82.1"]
2328

2429
- package-ecosystem: github-actions
2530
directory: /

0 commit comments

Comments
 (0)