Skip to content

Commit af3c840

Browse files
committedOct 14, 2014
Ensure there are no stale dists
1 parent 6482c6e commit af3c840

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎changes/packaging.py

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111

1212
def build_package(context):
1313
"""Builds package distributions"""
14+
15+
path('dist').rmtree()
16+
1417
build_package_command = 'python setup.py clean sdist bdist_wheel'
1518
result = shell.dry_run(build_package_command, context.dry_run)
1619
packages = ', '.join(path('dist').files()) if not context.dry_run else "nothing"
@@ -24,6 +27,7 @@ def build_package(context):
2427

2528
def install_package(context):
2629
"""Attempts to install the sdist and wheel."""
30+
2731
if not context.dry_run and build_package(context):
2832
with util.mktmpdir() as tmp_dir:
2933
venv.create_venv(tmp_dir=tmp_dir)

0 commit comments

Comments
 (0)