MonkeyCanCode commented on code in PR #2590: URL: https://github.com/apache/polaris/pull/2590#discussion_r2357391720
########## build.gradle.kts: ########## @@ -135,6 +135,13 @@ tasks.named<RatTask>("rat").configure { excludes.add("**/*.png") } +tasks.register<Exec>("buildPythonClient") { + description = "Build the python client" + + workingDir = project.projectDir + commandLine("make", "client-build") Review Comment: > Some thoughts: Shall we add an option to build only sdist? Underlying it would be > > ``` > poetry build --format=sdist > ``` > > Could be useful in some case when we only want sdist : ) Good suggestion. Let me quickly add that. -- 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: issues-unsubscr...@polaris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org