This is an automated email from the ASF dual-hosted git repository.
jshao pushed a commit to branch branch-0.6
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/branch-0.6 by this push:
new 9a3243a31 [#4803] improvement(client-python): Delete egg-info
directory due to Python package renamed improvement (#4825)
9a3243a31 is described below
commit 9a3243a3116b96683d29078cb1051173dbe4b259
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Aug 30 10:00:32 2024 -0700
[#4803] improvement(client-python): Delete egg-info directory due to Python
package renamed improvement (#4825)
### What changes were proposed in this pull request?
* Modify `clean` task to delete `apache_gravitino.egg_info`
### Why are the changes needed?
Fix: #4803
### Does this PR introduce _any_ user-facing change?
No
### How was this patch tested?
./gradlew client:client-python:clean
Co-authored-by: noidname01 <[email protected]>
Co-authored-by: TimWang <[email protected]>
---
clients/client-python/build.gradle.kts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/clients/client-python/build.gradle.kts
b/clients/client-python/build.gradle.kts
index 60911dbd5..3d77039d6 100644
--- a/clients/client-python/build.gradle.kts
+++ b/clients/client-python/build.gradle.kts
@@ -319,7 +319,7 @@ tasks {
delete("dist")
delete("docs")
delete("gravitino/version.ini")
- delete("gravitino.egg-info")
+ delete("apache_gravitino.egg-info")
delete("tests/unittests/htmlcov")
delete("tests/unittests/.coverage")
delete("tests/integration/htmlcov")