Fokko commented on code in PR #951:
URL: https://github.com/apache/iceberg-python/pull/951#discussion_r1686074065
##########
pyproject.toml:
##########
@@ -61,7 +61,10 @@ tenacity = ">=8.2.3,<9.0.0"
pyarrow = { version = ">=9.0.0,<18.0.0", optional = true }
pandas = { version = ">=1.0.0,<3.0.0", optional = true }
duckdb = { version = ">=0.5.0,<2.0.0", optional = true }
-ray = { version = ">=2.0.0,<2.10.0", optional = true }
+ray = [
+ { version = "==2.10.0", python = "<3.9", optional = true},
+ { version = ">=2.10.0,<3.0.0", python = ">=3.9", optional = true}
+]
Review Comment:
So poetry is mainly to ensure reproducibility during development. To make
sure that you and I use the same dependencies, or locally and on the CI.
Otherwise, we might end up with situations where we get different outcomes
because we have different versions of libraries installed, and end up comparing
`pip freeze`'s.
--
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]