From 3306f21ed8c29e57f469f4cf00ae4dc4ce98c87e Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Tue, 28 Jan 2020 17:05:01 +0100 Subject: [PATCH] Drop unnecessary build dir cleanup in tmp checkout Co-Authored-By: Pradyun Gedam --- noxfile.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/noxfile.py b/noxfile.py index 5611fbe6e..619d14ae0 100644 --- a/noxfile.py +++ b/noxfile.py @@ -259,10 +259,6 @@ def build_release(session): def build_dists(session): - session.log("# Cleanup build/ before building the wheel") - if release.have_files_in_folder("build"): - shutil.rmtree("build") - session.log( "# Check if there's any Git-untracked files before building the wheel", )