Copilot commented on code in PR #9918: URL: https://github.com/apache/gravitino/pull/9918#discussion_r2781174525
########## clients/client-python/requirements-dev.txt: ########## @@ -32,3 +32,4 @@ pyjwt[crypto]==2.10.1 jwcrypto==1.5.6 sphinx==7.1.2 furo==2024.8.6 +banks<2.4.0 Review Comment: `requirements-dev.txt` pins every other dependency to an exact version (`==`), but `banks<2.4.0` leaves installs non-deterministic and may change CI behavior over time. Consider pinning `banks` to a specific known-good version (and/or adding a short comment referencing #9919), and if the incompatibility is only for Python 3.9, scope the constraint with an environment marker so 3.10+ aren’t unnecessarily restricted. -- 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]
