diff --git a/tools/release.py b/tools/release.py index 2461d3943daf3a6bb351a509e9b4bd95ea712eb2..98fdef3dd57b104722faabed674fbe911592c674 100755 --- a/tools/release.py +++ b/tools/release.py @@ -11,7 +11,6 @@ from weboob.tools.misc import to_unicode WORKTREE = 'release_tmp' -OPTIONS = ['--qt', '--xdg'] def make_tarball(tag, wheel): @@ -22,12 +21,12 @@ def make_tarball(tag, wheel): assert os.path.isdir(WORKTREE) os.chdir(WORKTREE) - check_call([sys.executable, 'setup.py'] + OPTIONS + + check_call([sys.executable, 'setup.py'] + ['sdist', '--keep', '--dist-dir', '../dist']) if wheel: - check_call([sys.executable, 'setup.py'] + OPTIONS + + check_call([sys.executable, 'setup.py'] + ['bdist_wheel', '--keep', '--dist-dir', '../dist'])