geruh commented on code in PR #14684: URL: https://github.com/apache/iceberg/pull/14684#discussion_r2582447385
########## open-api/Makefile: ########## @@ -16,15 +16,17 @@ # under the License. install: - pip install -r requirements.txt + uv venv --python 3.12 --allow-existing # Match --target-python-version in the `generate` target + uv pip install -r requirements.txt lint: - openapi-spec-validator --errors all rest-catalog-open-api.yaml + uv run openapi-spec-validator --errors all rest-catalog-open-api.yaml + uv run openapi-spec-validator --errors all ../aws/src/main/resources/s3-signer-open-api.yaml generate: - datamodel-codegen \ - --enum-field-as-literal all \ - --target-python-version 3.9 \ + uv run datamodel-codegen \ + --enum-field-as-literal all \ Review Comment: nvm this was a format fix! -- 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]
