diff options
author | PJ Eby <distutils-sig@python.org> | 2006-12-29 17:43:39 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2006-12-29 17:43:39 +0000 |
commit | e44a3a3aff42cc965851490e6b1f6973c01473d4 (patch) | |
tree | b29cd7ff9baa69216dcc963f900b8134ebef60ce /setuptools.txt | |
parent | 47f061eef1d9c4832b9a4394e84642811356ad10 (diff) | |
download | external_python_setuptools-e44a3a3aff42cc965851490e6b1f6973c01473d4.tar.gz external_python_setuptools-e44a3a3aff42cc965851490e6b1f6973c01473d4.tar.bz2 external_python_setuptools-e44a3a3aff42cc965851490e6b1f6973c01473d4.zip |
Overhauled Windows script wrapping to support ``bdist_wininst`` better.
Scripts installed with ``bdist_wininst`` will always use ``#!python.exe`` or
``#!pythonw.exe`` as the executable name (even when built on non-Windows
platforms!), and the wrappers will look for the executable in the script's
parent directory (which should find the right version of Python).
(backport from trunk)
--HG--
branch : setuptools-0.6
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4053194
Diffstat (limited to 'setuptools.txt')
-rwxr-xr-x | setuptools.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/setuptools.txt b/setuptools.txt index dae4e03d..0997122a 100755 --- a/setuptools.txt +++ b/setuptools.txt @@ -2601,6 +2601,13 @@ Release Notes/Change History ---------------------------- 0.6c4 + + * Overhauled Windows script wrapping to support ``bdist_wininst`` better. + Scripts installed with ``bdist_wininst`` will always use ``#!python.exe`` or + ``#!pythonw.exe`` as the executable name (even when built on non-Windows + platforms!), and the wrappers will look for the executable in the script's + parent directory (which should find the right version of Python). + * Fix ``upload`` command not uploading files built by ``bdist_rpm`` or ``bdist_wininst`` under Python 2.3 and 2.4. |