Unverified Commit 5f653c32 authored by Rhett Ying's avatar Rhett Ying Committed by GitHub
Browse files

[dev] remove build artifacts for cleanup (#7166)

parent ca355639
......@@ -84,6 +84,13 @@ def cleanup():
remove_lib("dgl_sparse")
remove_lib("graphbolt")
# Remove build artifacts.
dir_to_remove = ["build", "dist", "dgl.egg-info"]
for dir_ in dir_to_remove:
print(f"Removing {dir_}")
if os.path.isdir(dir_):
shutil.rmtree(dir_)
def config_cython():
"""Try to configure cython and return cython configuration"""
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment