kevinjqliu commented on code in PR #1796: URL: https://github.com/apache/iceberg-rust/pull/1796#discussion_r2471227733
########## bindings/python/README.md: ########## @@ -23,22 +23,26 @@ This project is used to build an Iceberg-rust powered core for [PyIceberg](https ## Setup -Install Hatch: +Install [uv](https://docs.astral.sh/uv/getting-started/installation/): ```shell -pip install hatch==1.12.0 +pip install uv==0.9.3 ``` -Hatch uses [uv](https://docs.astral.sh/uv/) as a backend by default, so [make sure that it is installed](https://docs.astral.sh/uv/getting-started/installation/) as well. +Set up the development environment: + +```shell +uv sync --group dev +``` ## Build ```shell -hatch run dev:develop +uv run --group dev maturin develop ``` ## Test ```shell -hatch run dev:test +uv run --group dev pytest Review Comment: I think it would be helpful to add these into a Makefile -- 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]
