bito-code-review[bot] commented on code in PR #41254:
URL: https://github.com/apache/superset/pull/41254#discussion_r3445613868
##########
pyproject.toml:
##########
@@ -218,7 +218,7 @@ development = [
"docker",
"flask-testing",
"freezegun",
- "grpcio>=1.55.3",
+ "grpcio>=1.81.1",
Review Comment:
<div>
<div id="suggestion">
<div id="issue"><b>Inconsistent grpcio version constraints</b></div>
<div id="fix">
The `grpcio` version in pyproject.toml (`>=1.81.1`) is now misaligned with
`requirements/development.txt` which pins `grpcio==1.71.0` (line 385).
Additionally, `grpcio-status==1.60.1` (line 390) must match the grpcio
major.minor version to avoid runtime import failures. Align these pinned
versions or use consistent constraints to prevent dependency resolution
discrepancies across development environments.
</div>
<details>
<summary>
<b>Code suggestion</b>
</summary>
<blockquote>Check the AI-generated fix before applying</blockquote>
<div id="code">
```
--- requirements/development.txt (lines 380-395) ---
384: # grpcio-status
385:-grpcio==1.71.0
386:+grpcio>=1.81.1
387: # grpcio-status
388: # grpcio-tools
389: # grpcio-testing
390:-grpcio-status==1.60.1
391:+grpcio-status>=1.81.1
392: grpcio-tools==1.71.0
```
</div>
</details>
</div>
<small><i>Code Review Run #7d0f6c</i></small>
</div>
---
Should Bito avoid suggestions like this for future reviews? (<a
href=https://alpha.bito.ai/home/ai-agents/review-rules>Manage Rules</a>)
- [ ] Yes, avoid them
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]