geruh commented on code in PR #2658:
URL: https://github.com/apache/iceberg-python/pull/2658#discussion_r2462371959
##########
pyproject.toml:
##########
@@ -66,7 +67,10 @@ pyarrow = { version = ">=17.0.0", optional = true }
google-auth = { version = ">=2.4.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.10.0,<=2.44.0", optional = true }
+ray = [
+ { version = ">=2.10.0,<3.0.0", python = ">=3.10", optional = true },
Review Comment:
We used to have a wider upper bound of 3.0.0 like this, and the tight upper
bound was added as part of:
https://github.com/apache/iceberg-python/pull/2071#discussion_r2140786719.
I was wondering if you were about to have a single entry since on a clean
dep resolve Poetry usually chooses the highest compatible version which should
technically work across all python releases.
```
ray = [
{ version = ">=2.45.0,<=2.49.0", python = ">=3.10", optional = true }
]
```
--
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]