From c62d4b40ad54a0e8072d564b5ff3a31f6722200c Mon Sep 17 00:00:00 2001 From: Jehandad Khan Date: Tue, 1 Oct 2024 16:47:36 +0000 Subject: [PATCH] remove the egg-info dir --- build/rocm/tools/build_wheels.py | 1 + 1 file changed, 1 insertion(+) diff --git a/build/rocm/tools/build_wheels.py b/build/rocm/tools/build_wheels.py index 01a1025409f6..fb1e55b09504 100644 --- a/build/rocm/tools/build_wheels.py +++ b/build/rocm/tools/build_wheels.py @@ -256,6 +256,7 @@ def main(): shutil.copy(whl, wheelhouse_dir) # delete the 'dist' directory since it causes permissions issues shutil.rmtree(os.path.join(args.jax_path, "dist")) + shutil.rmtree(os.path.join(args.jax_path, "jax.egg-info")) if __name__ == "__main__":