JonasJ-ap commented on code in PR #7148:
URL: https://github.com/apache/iceberg/pull/7148#discussion_r1145521871


##########
python/pyproject.toml:
##########
@@ -100,6 +102,7 @@ build-backend = "poetry.core.masonry.api"
 pyarrow = ["pyarrow"]
 pandas = ["pandas", "pyarrow"]
 duckdb = ["duckdb", "pyarrow"]
+ray = ["ray", "pyarrow", "pandas"]

Review Comment:
   @c21 The `pyproject.toml` tracks both the required and optional 
dependencies. Currently, `ray` is set as an optional dependency
   ```toml
   ray = { version = ">=2.0.0,<=2.3.0", optional = true }
   ```
   For example. If users want to convert the iceberg table stored in AWS Glue 
to a ray dataset, they can install the pyiceberg by
   ```bash
   git clone https://github.com/apache/iceberg.git
   cd iceberg/python
   pip3 install -e ".[glue,ray]"
   ```
   In this way, all the required dependencies for ray are installed, including 
`ray`, `pyarrow`, and `pandas` as specified in line 105
   
   ref: https://py.iceberg.apache.org/



-- 
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]

Reply via email to