Skip to content

Commit 322e11c

Browse files
committed
wheel-test: revert forgotten temp dir non-deletion
1 parent 52c5662 commit 322e11c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build-system/luxmake/wheel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ def make_wheel(args):
112112

113113
logger.info("Making wheel for version '%s' and tag '%s'", version, tag)
114114
with (
115-
tempfile.TemporaryDirectory(delete=False) as wheeltree,
116-
tempfile.TemporaryDirectory(delete=False) as raw_wheel,
115+
tempfile.TemporaryDirectory() as wheeltree,
116+
tempfile.TemporaryDirectory() as raw_wheel,
117117
):
118118
# We create an install tree, with all the wheel components, then we
119119
# pack it into a raw wheel and eventually we repair it.

0 commit comments

Comments
 (0)