Fokko commented on code in PR #8705: URL: https://github.com/apache/iceberg/pull/8705#discussion_r1344523015
########## python/pyproject.toml: ########## @@ -52,7 +52,7 @@ requests = ">=2.20.0,<3.0.0" click = ">=7.1.1,<9.0.0" rich = ">=10.11.0,<14.0.0" strictyaml = ">=1.7.0,<2.0.0" # CVE-2020-14343 was fixed in 5.4. -pydantic = ">=2.0,<3.0" +pydantic = ">=2.0,<2.4" # 2.4 release breaks model construction Review Comment: I think you can exclude certain versions like this: ```suggestion pydantic = ">=2.0,<3.0,!=2.4.0,!=2.4.1" # 2.4.0, 2.4.1 has a critical bug ``` -- 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]
