aboutsummaryrefslogtreecommitdiffstats
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
commitdc18e9bab9e5bca57269775572a4e77fcef98b78 (patch)
tree964cc8d23e9ec537442a3893316b0290b9b8037c /release.py
parent2b837b281149f24f44089a85efecbb40cf1258c4 (diff)
downloadexternal_python_setuptools-dc18e9bab9e5bca57269775572a4e77fcef98b78.tar.gz
external_python_setuptools-dc18e9bab9e5bca57269775572a4e77fcef98b78.tar.bz2
external_python_setuptools-dc18e9bab9e5bca57269775572a4e77fcef98b78.zip
Added comment emphasizing the importance of bdist_wheel. Using Python 3.3 fixes #143.
--HG-- extra : amend_source : 46787fd35452f54da1a8afd2bf8a30dff920d8a2
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"