diff options
author | Waylan Limberg <waylan@gmail.com> | 2012-12-05 11:30:06 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2012-12-05 11:30:06 -0500 |
commit | e57b954a1f964ec0635d189c16d130c4e6ba5479 (patch) | |
tree | 190f20ecd936b71adce88781f65624ebcd0e2d32 /fabfile.py | |
parent | e9fe9c3516d434d3e10a55ad30399a2f42c6363a (diff) | |
download | markdown-e57b954a1f964ec0635d189c16d130c4e6ba5479.tar.gz markdown-e57b954a1f964ec0635d189c16d130c4e6ba5479.tar.bz2 markdown-e57b954a1f964ec0635d189c16d130c4e6ba5479.zip |
Upped version to 2.3.dev.
Also refactored the version info to force PEP 386 compliance and to avoid
the need to change the version in both the source and setup.py
Diffstat (limited to 'fabfile.py')
-rw-r--r-- | fabfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -95,7 +95,7 @@ def build_envs(): def build_release(): """ Build a package for distribution. """ - ans = prompt('Have you updated the version in both setup.py and __init__.py?', default='Y') + ans = prompt('Have you updated the version_info in __version__.py?', default='Y') if ans.lower() == 'y': local('./setup.py sdist --formats zip,gztar') if platform == 'win32': |