File tree 1 file changed +15
-4
lines changed
1 file changed +15
-4
lines changed Original file line number Diff line number Diff line change 9
9
log = logging .getLogger (__name__ )
10
10
11
11
12
- def install_package (context ):
13
- """Attempts to install the sdist and wheel. """
12
+ def build_package (context ):
13
+ """Builds package distributions """
14
14
build_package_command = 'python setup.py clean sdist bdist_wheel'
15
15
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 ):
17
27
with util .mktmpdir () as tmp_dir :
18
28
venv .create_venv (tmp_dir = tmp_dir )
19
29
for distribution in path ('dist' ).files ():
@@ -30,7 +40,8 @@ def install_package(context):
30
40
31
41
32
42
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 )
34
45
35
46
upload_args = 'python setup.py clean sdist upload'
36
47
if context .pypi :
You can’t perform that action at this time.
0 commit comments