diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-02-06 09:31:48 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-02-06 09:31:48 -0500 |
commit | dc18e9bab9e5bca57269775572a4e77fcef98b78 (patch) | |
tree | 964cc8d23e9ec537442a3893316b0290b9b8037c /release.py | |
parent | 2b837b281149f24f44089a85efecbb40cf1258c4 (diff) | |
download | external_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.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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" |