[issue23612] 3.5.0a2 Windows installer does not remove 3.5.0a1

2015-04-14 Thread Steve Dower
Steve Dower added the comment: To be precise, 3.5.0a3 and later will uninstall 3.5.0a2 and later. 3.5.0a1 has to be uninstalled manually, because it's the one with the bug... -- ___ Python tracker

[issue23612] 3.5.0a2 Windows installer does not remove 3.5.0a1

2015-04-14 Thread Zachary Ware
Zachary Ware added the comment: Steve confirmed in person at PyCon that this is fixed. -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___

[issue23612] 3.5.0a2 Windows installer does not remove 3.5.0a1

2015-03-08 Thread Steve Dower
Steve Dower added the comment: Two parts to this - first that I was using the wrong version, but also the wrong upgrade code for the bundle. Those are both fixed now, but it does mean that both 3.5.0a1 and a2 will need to be manually uninstalled. It is possible to add a list of the upgrade cod

[issue23612] 3.5.0a2 Windows installer does not remove 3.5.0a1

2015-03-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 97e01e107591 by Steve Dower in branch 'default': Issue #23612: Fixes upgrade code and version for Windows installer. https://hg.python.org/cpython/rev/97e01e107591 -- nosy: +python-dev ___ Python tracker

[issue23612] 3.5.0a2 Windows installer does not remove 3.5.0a1

2015-03-08 Thread Steve Dower
Steve Dower added the comment: Looks like the way I was calculating the version number of the installer didn't take into account a2 and a3 - we had 3.5.0.10 for 3.5.0a*. I think switching to $(Major).$(Minor).$(Field3Value).0 is correct here - this should give us 3.5.100.0, 3.5.101.0, 3.5.102.

[issue23612] 3.5.0a2 Windows installer does not remove 3.5.0a1

2015-03-08 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue23612] 3.5.0a2 Windows installer does not remove 3.5.0a1

2015-03-08 Thread Steve Dower
New submission from Steve Dower: Currently, 3.5.0a1 needs to be manually removed either before or after installing 3.5.0a2 (after *should* be okay, but before is preferable). Installing a later version should detect and remove the earlier one. This is obviously an installer bug. -- as