Skip to content

Commit 04e1f3f

Browse files
committed
Extract build_package step
1 parent 8bc57ff commit 04e1f3f

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

changes/packaging.py

+15-4
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,21 @@
99
log = logging.getLogger(__name__)
1010

1111

12-
def install_package(context):
13-
"""Attempts to install the sdist and wheel."""
12+
def build_package(context):
13+
"""Builds package distributions"""
1414
build_package_command = 'python setup.py clean sdist bdist_wheel'
1515
result = shell.dry_run(build_package_command, context.dry_run)
16-
if not context.dry_run and result:
16+
packages = ', '.join(path('dist').files()) if not context.dry_run else "nothing"
17+
18+
if not result:
19+
raise Exception('Error building packages: %s' % result)
20+
else:
21+
log.info('Built %s' % packages)
22+
23+
24+
def install_package(context):
25+
"""Attempts to install the sdist and wheel."""
26+
if not context.dry_run and build_package(context):
1727
with util.mktmpdir() as tmp_dir:
1828
venv.create_venv(tmp_dir=tmp_dir)
1929
for distribution in path('dist').files():
@@ -30,7 +40,8 @@ def install_package(context):
3040

3141

3242
def upload_package(context):
33-
"""Uploads your project with setup.py clean sdist bdist_wheel upload."""
43+
"""Uploads your project packages to pypi with twine."""
44+
result = build_package(context)
3445

3546
upload_args = 'python setup.py clean sdist upload'
3647
if context.pypi:

0 commit comments

Comments
 (0)