Run bdist_wheel as a part of release process
The setup.cfg declares the ability to compile a wheel, but release process isn't actually compiling a wheel.
This commit is contained in:
parent
3d7857344a
commit
ce06240851
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ def set_setup_version(version):
|
|||
|
||||
|
||||
def build_and_upload():
|
||||
Popen([sys.executable, 'setup.py', 'release', 'sdist', 'upload']).wait()
|
||||
Popen([sys.executable, 'setup.py', 'release', 'sdist', 'bdist_wheel', 'upload']).wait()
|
||||
|
||||
|
||||
def fail(message, *args):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue