[issue17056] Support Visual Studio 2012

2014-12-31 Thread Steve Dower
Changes by Steve Dower : -- resolution: -> duplicate status: open -> closed superseder: -> Update PCBuild for VS 2015 ___ Python tracker ___ ___

[issue17056] Support Visual Studio 2012

2014-12-31 Thread Mark Lawrence
Mark Lawrence added the comment: Can this be closed as essentially a duplicate of #22919 which targets Visual Studio 2015? -- nosy: +BreamoreBoy ___ Python tracker ___ _

[issue17056] Support Visual Studio 2012

2014-07-14 Thread Steve Dower
Steve Dower added the comment: msvc9compiler should not look for any versions of MSVC other than 9.0, since extensions built using other versions will be subtly (or dramatically) incompatible with Python unless you also rebuild Python itself with the same MSVC version. You can set DISTUTILS_U

[issue17056] Support Visual Studio 2012

2014-07-10 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: +steve.dower, tim.golden, zach.ware versions: +Python 3.5 -Python 3.4 ___ Python tracker ___ ___ P

[issue17056] Support Visual Studio 2012

2013-01-30 Thread Trent Nelson
Changes by Trent Nelson : -- nosy: +trent ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue17056] Support Visual Studio 2012

2013-01-27 Thread Brian Curtin
Brian Curtin added the comment: This is a feature request and new features are only being added on the 3.x line. The next feature release will be 3.4. -- ___ Python tracker ___

[issue17056] Support Visual Studio 2012

2013-01-27 Thread Gili T.
Gili T. added the comment: Why? :) I ask because all the application I depend upon only run against Python 2.x (Rhodecode, Mercurial, etc). I'd love for them to upgrade but it's not really in my control. Has there been some sort of policy change within Python to stop supporting 2.x?

[issue17056] Support Visual Studio 2012

2013-01-27 Thread Brian Curtin
Brian Curtin added the comment: This change can only happen on 3.4. -- versions: +Python 3.4 -Python 2.7 ___ Python tracker ___ ___ Py

[issue17056] Support Visual Studio 2012

2013-01-27 Thread Ezio Melotti
Changes by Ezio Melotti : -- components: +Windows nosy: +brian.curtin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue17056] Support Visual Studio 2012

2013-01-27 Thread Gili T.
New submission from Gili T.: msvc9compiler needs to check for the VS110COMNTOOLS environment variable in order to support Visual Studio 2012. Currently it complains "cannot find vcvarsall.bat". The following workaround works for now: SET VS90COMNTOOLS=%VS110COMNTOOLS% -- components: