Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7

2014-10-05 Thread Steve Dower
e. Cheers, Steve Top-posted from my Windows Phone From: Georg Brandl<mailto:g.bra...@gmx.net> Sent: ‎10/‎5/‎2014 3:23 To: python-dev@python.org<mailto:python-dev@python.org> Subject: Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7 I just

Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7

2014-10-05 Thread Georg Brandl
I just tried out the compiler and built wininst and wheel dists. Thanks! distutils was *almost* fine using it, but for two snags: * I had to set VS90COMNTOOLS * distutils expects vcvarsall.bat in VC, while you have it in the parent dir The first could be set by the installer of your package. B

Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7

2014-09-29 Thread Steve Dower
Paul Moore wrote: > File "C:\Apps\Python27\Lib\distutils\msvc9compiler.py", line 299, in > query_vcvarsall > > raise ValueError(str(list(result.keys( > > ValueError: [u'path', u'include', u'lib'] > > > Failed building wheel for blist > Failed to build

Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7

2014-09-29 Thread Giampaolo Rodola'
On Fri, Sep 26, 2014 at 8:01 PM, Steve Dower wrote: > Hi all, > > (This is advance notice since people on this list will be interested. > Official announcements are coming when setuptools makes their next release.) > > Microsoft has released a compiler package targeting Python 2.7 (i.e. VC9). > W

Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7

2014-09-28 Thread Eko Wibowo
+1 Wow. After PTVS, this is the next big thing for Python developer on Windows. Hoping that someday Python will be treated by Microsoft just like .NET Framework: so we can easily shipped our own modules, not with a complete Python interpreter and packages Thanks Steve! On 9/27/2014 1:01 AM, Steve

Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7

2014-09-28 Thread Paul Moore
On 26 September 2014 19:01, Steve Dower wrote: > You can install the package without requiring administrative privileges and, > with the latest version of setuptools (when it releases), use tools such as > pip, wheel, or a setup.py file to produce binaries on Windows. >From the setuptools chang

Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7

2014-09-27 Thread Steve Dower
[Python-Dev] Microsoft Visual C++ Compiler for Python 2.7 On Sat, 27 Sep 2014 14:10:48 +0100 Paul Moore wrote: > On 27 September 2014 14:01, Nick Coghlan wrote: > > I personally believe we should treat handling both this and the SDK > > compilers properly as a platform-enablement

Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7

2014-09-27 Thread Sturla Molden
Steve Dower wrote: > It'll help with the numerical stack, but only a little. The devs involved > have largely figured it out already and I can't provide a good Fortran > compiler or BLAS library, which is what they need. We finally have a MinGW based toolchain that can be used. Making sure it was

Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7

2014-09-27 Thread Sturla Molden
Christian Heimes wrote: > Is it possible to compile extensions from Python's numerical stack such > as NumPy, SciPy and SciKit, too? The official NumPy installer is currently built with VC9, so probably yes. Other parts of the SciPy stack needs a Fortran compiler as well, so those might be more

Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7

2014-09-27 Thread Steve Dower
Sent: ‎9/‎27/‎2014 5:13 To: python-dev@python.org<mailto:python-dev@python.org> Subject: Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7 On Fri, 26 Sep 2014 18:01:31 + Steve Dower wrote: > Hi all, > > (This is advance notice since people on this list will be interested.

Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7

2014-09-27 Thread Antoine Pitrou
On Sat, 27 Sep 2014 14:10:48 +0100 Paul Moore wrote: > On 27 September 2014 14:01, Nick Coghlan wrote: > > I personally believe we should treat handling both this and the SDK > > compilers properly as a platform-enablement bug for distutils and > > ensure they work properly with the currently mai

Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7

2014-09-27 Thread Steve Dower
__ From: Christian Heimes<mailto:christ...@python.org> Sent: ‎9/‎27/‎2014 7:19 To: python-dev@python.org<mailto:python-dev@python.org> Subject: Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7 On 26.09.2014 20:01, Steve Dower wrote: > Hi all, > > (This is

Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7

2014-09-27 Thread Christian Heimes
On 26.09.2014 20:01, Steve Dower wrote: > Hi all, > > (This is advance notice since people on this list will be interested. > Official announcements are coming when setuptools makes their next release.) > > Microsoft has released a compiler package targeting Python 2.7 (i.e. VC9). > We've produ

Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7

2014-09-27 Thread Paul Moore
On 27 September 2014 14:01, Nick Coghlan wrote: > I personally believe we should treat handling both this and the SDK > compilers properly as a platform-enablement bug for distutils and > ensure they work properly with the currently maintained branches > (including 2.7). +1 __

Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7

2014-09-27 Thread Nick Coghlan
On 27 September 2014 22:12, Antoine Pitrou wrote: > On Fri, 26 Sep 2014 18:01:31 + > Steve Dower wrote: >> Hi all, >> >> (This is advance notice since people on this list will be interested. >> Official announcements are coming when setuptools makes their next release.) > > When you mention

Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7

2014-09-27 Thread Antoine Pitrou
On Fri, 26 Sep 2014 18:01:31 + Steve Dower wrote: > Hi all, > > (This is advance notice since people on this list will be interested. > Official announcements are coming when setuptools makes their next release.) When you mention "setuptools", do you imply it doesn't work with plain distuti

Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7

2014-09-26 Thread Paul Moore
On 26 September 2014 19:01, Steve Dower wrote: > Microsoft has released a compiler package targeting Python 2.7 (i.e. VC9). > We've produced this package to help library developers build wheels for > Windows, but also to help users unblock themselves when they need to build C > extensions thems

Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7

2014-09-26 Thread Larry Hastings
On 09/26/2014 11:01 AM, Steve Dower wrote: Microsoft has released a compiler package targeting Python 2.7 (i.e. VC9). We've produced this package to help library developers build wheels for Windows, but also to help users unblock themselves when they need to build C extensions themselves. T

Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7

2014-09-26 Thread Ryan Gonzalez
At long last! Building C extensions on Windows will no longer be a pain in the rear! On Fri, Sep 26, 2014 at 1:01 PM, Steve Dower wrote: > Hi all, > > (This is advance notice since people on this list will be interested. > Official announcements are coming when setuptools makes their next releas

Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7

2014-09-26 Thread Tim Golden
On 26/09/2014 19:01, Steve Dower wrote: Hi all, (This is advance notice since people on this list will be interested. Official announcements are coming when setuptools makes their next release.) Microsoft has released a compiler package targeting Python 2.7 (i.e. VC9). We've produced this packa

Re: [Python-Dev] Microsoft Visual C++ Compiler for Python 2.7

2014-09-26 Thread Donald Stufft
Awesome! > On Sep 26, 2014, at 2:01 PM, Steve Dower wrote: > > Hi all, > > (This is advance notice since people on this list will be interested. > Official announcements are coming when setuptools makes their next release.) > > Microsoft has released a compiler package targeting Python 2.7 (