summaryrefslogtreecommitdiff
path: root/release.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-02-06 09:31:48 -0500
committerJason R. Coombs <jaraco@jaraco.com>2014-02-06 09:31:48 -0500
commitac9c97f0c6a9540cf16af487a27d59c5b06511cf (patch)
tree5f2a03d1d80180d741de8ece833fe0d2e8762914 /release.py
parentfe90ec05b4c2e63ea023b065ca9d860556cb3e9d (diff)
downloadpython-setuptools-bitbucket-ac9c97f0c6a9540cf16af487a27d59c5b06511cf.tar.gz
Added comment emphasizing the importance of bdist_wheel. Using Python 3.3 fixes #143.
Diffstat (limited to 'release.py')
-rw-r--r--release.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/release.py b/release.py
index 5735e10c..d2f82775 100644
--- a/release.py
+++ b/release.py
@@ -26,7 +26,8 @@ files_with_versions = (
'ez_setup.py', 'setuptools/version.py',
)
-dist_commands = 'sdist',# 'bdist_wheel'
+# bdist_wheel must be included or pip will break
+dist_commands = 'sdist', 'bdist_wheel'
test_info = "Travis-CI tests: http://travis-ci.org/#!/jaraco/setuptools"