Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ deprecated = "^1.2.14"
events = "^0.5"
numpy = "^1.26.2"
grpcio = "1.68.1"
Copy link

Copilot AI Nov 27, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] The protobuf version constraint is being relaxed while grpcio remains pinned to an exact version. The generated protobuf code in geyser_pb2.py was created with protobuf 5.28.1 and includes runtime version validation (line 12-19 in geyser_pb2.py). Consider also relaxing the grpcio version pin to use a caret constraint (e.g., "^1.68.1") for consistency, as grpcio and protobuf are closely related dependencies that typically work together across minor versions.

Suggested change
grpcio = "1.68.1"
grpcio = "^1.68.1"

Copilot uses AI. Check for mistakes.
protobuf = "5.29.2"
protobuf = "^5.29.2"
pynacl = "^1.5.0"
tqdm = "^4.67.1"

Expand Down