aboutsummaryrefslogtreecommitdiffstats
path: root/release.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-07-13 20:44:13 -0400
committerJason R. Coombs <jaraco@jaraco.com>2013-07-13 20:44:13 -0400
commit0cb9cd7aaa256fc5e14900958250a8911afa08ba (patch)
tree19f59f0f8875d511ad8421afb2affc2187b30819 /release.py
parent2de1c553de6472ce3e830b32fcbf39043321ba2a (diff)
downloadexternal_python_setuptools-0cb9cd7aaa256fc5e14900958250a8911afa08ba.tar.gz
external_python_setuptools-0cb9cd7aaa256fc5e14900958250a8911afa08ba.tar.bz2
external_python_setuptools-0cb9cd7aaa256fc5e14900958250a8911afa08ba.zip
setup.py now loads the version from setuptools/__init__.py, limiting the places where release.py must keep in sync.
Diffstat (limited to 'release.py')
-rw-r--r--release.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release.py b/release.py
index 5dae8cea..34b250b2 100644
--- a/release.py
+++ b/release.py
@@ -16,7 +16,7 @@ def before_upload():
_linkify('CHANGES.txt', 'CHANGES (linked).txt')
files_with_versions = (
- 'docs/conf.py', 'setup.py', 'ez_setup.py', 'setuptools/__init__.py',
+ 'docs/conf.py', 'ez_setup.py', 'setuptools/__init__.py',
)
test_info = "Travis-CI tests: http://travis-ci.org/#!/jaraco/setuptools"