We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6482c6e commit af3c840Copy full SHA for af3c840
changes/packaging.py
@@ -11,6 +11,9 @@
11
12
def build_package(context):
13
"""Builds package distributions"""
14
+
15
+ path('dist').rmtree()
16
17
build_package_command = 'python setup.py clean sdist bdist_wheel'
18
result = shell.dry_run(build_package_command, context.dry_run)
19
packages = ', '.join(path('dist').files()) if not context.dry_run else "nothing"
@@ -24,6 +27,7 @@ def build_package(context):
24
27
25
28
def install_package(context):
26
29
"""Attempts to install the sdist and wheel."""
30
31
if not context.dry_run and build_package(context):
32
with util.mktmpdir() as tmp_dir:
33
venv.create_venv(tmp_dir=tmp_dir)
0 commit comments