Updated release command

This commit is contained in:
Armin Ronacher 2017-04-03 15:11:09 +02:00
parent faceeca784
commit 516f45b060
2 changed files with 1 additions and 4 deletions

View File

@ -92,7 +92,7 @@ def set_setup_version(version):
def build_and_upload():
cmd = [sys.executable, 'setup.py', 'release', 'sdist', 'bdist_wheel', 'upload']
cmd = [sys.executable, 'setup.py', 'sdist', 'bdist_wheel', 'upload']
if wheel is not None:
cmd.insert(4, 'bdist_wheel')
Popen(cmd).wait()

View File

@ -4,8 +4,5 @@ universal = 1
[metadata]
license_file = LICENSE
[aliases]
release = egg_info -RDb ''
[tool:pytest]
norecursedirs = .* *.egg *.egg-info env* artwork docs examples venv*