diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2012-03-09 23:13:28 -0800 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2012-03-09 23:13:28 -0800 |
| commit | 891245ccf8a50b291d46bed7fe67c0d11dcb9a78 (patch) | |
| tree | ad9b5c7d37da7f017f45fcd24b5dd8278fe66998 /release.py | |
| parent | 43fc7cb8cd098beb4bd2060270d6d83169556699 (diff) | |
| download | python-setuptools-bitbucket-891245ccf8a50b291d46bed7fe67c0d11dcb9a78.tar.gz | |
Fix release script to not include deleted files.
Diffstat (limited to 'release.py')
| -rw-r--r-- | release.py | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -12,7 +12,7 @@ import shutil import os import sys -VERSION='0.6.25' +VERSION = '0.6.25' def get_next_version(): digits = map(int, VERSION.split('.')) @@ -21,9 +21,10 @@ def get_next_version(): NEXT_VERSION = get_next_version() +files_with_versions = ('docs/conf.py', 'setup.py', 'release.py', + 'README.txt', 'distribute_setup.py') + def bump_versions(): - files_with_versions = ('docs/conf.py', 'setup.py', 'release.py', - 'release.sh', 'README.txt', 'distribute_setup.py') list(map(bump_version, files_with_versions)) def bump_version(filename): @@ -33,6 +34,8 @@ def bump_version(filename): f.writelines(lines) def do_release(): + assert all(map(os.path.exists, files_with_versions)), ( + "Expected file(s) missing") res = raw_input('Have you read through the SCM changelog and ' 'confirmed the changelog is current for releasing {VERSION}? ' .format(**globals())) |
