diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2014-02-28 13:35:05 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2014-02-28 13:35:05 (GMT) |
commit | a46cf12e9956dbb0fa84cc1d7e8b81d4d2f7c55a (patch) | |
tree | 38fddc902f210fa79e212a302d9cc36938305edd /Misc/NEWS | |
parent | 26dd0ff075bcfcdc6eebe584dce55dfd2f1b1537 (diff) | |
download | cpython-a46cf12e9956dbb0fa84cc1d7e8b81d4d2f7c55a.zip cpython-a46cf12e9956dbb0fa84cc1d7e8b81d4d2f7c55a.tar.gz cpython-a46cf12e9956dbb0fa84cc1d7e8b81d4d2f7c55a.tar.bz2 |
Close #20757: return success for skipped pip uninstall
The 3.4rc2 Windows uninstaller would fail if pip had been updated
to a version that didn't match the version installed by ensurepip.
This skip is no longer treated as an error, so an updated pip ends
up being handled like any other pip installed package and is left
alone by the CPython uninstaller.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -2,6 +2,20 @@ Python News +++++++++++ +What's New in Python 3.4.0 release candidate 3? +=============================================== + +Release date: 2014-03-09 + +Build +----- + +- Issue #20757: The ensurepip helper for the Windows uninstaller now skips + uninstalling pip (rather than failing) if the user has updated pip to a + different version from the one bundled with ensurepip. + + + What's New in Python 3.4.0 release candidate 2? =============================================== |