Re: [Numpy-discussion] 64-bit windows numpy / scipy wheels for testing

2014-04-24 Thread josef . pktd
On Thu, Apr 24, 2014 at 7:00 PM, Charles R Harris wrote: > > Hi Matthew, > > On Thu, Apr 24, 2014 at 3:56 PM, Matthew Brett wrote: > >> Hi, >> >> Thanks to Cark Kleffner's toolchain and some help from Clint Whaley >> (main author of ATLAS), I've built 64-bit windows numpy and scipy >> wheels for

Re: [Numpy-discussion] 64-bit windows numpy / scipy wheels for testing

2014-04-24 Thread josef . pktd
On Thu, Apr 24, 2014 at 7:29 PM, wrote: > > > > On Thu, Apr 24, 2014 at 7:20 PM, Charles R Harris < > charlesr.har...@gmail.com> wrote: > >> >> >> >> On Thu, Apr 24, 2014 at 5:08 PM, wrote: >> >>> >>> >>> >>> On Thu, Apr 24, 2014 at 7:00 PM, Charles R Harris < >>> charlesr.har...@gmail.com> wrot

Re: [Numpy-discussion] Dates and times and Datetime64 (again)

2014-04-24 Thread Chris Barker
On Thu, Apr 24, 2014 at 10:07 AM, Charles R Harris < charlesr.har...@gmail.com> wrote: > Might want to take a look at the datetime > proposalfor > blaze. > oh man! not again!. Oh well, that is a decidedly different

Re: [Numpy-discussion] 64-bit windows numpy / scipy wheels for testing

2014-04-24 Thread josef . pktd
> > > OT: Oh, I hate pip and packages that require numpy E:\tmp>C:\Python27\python C:\Python27\Scripts\pip-script.py install -U patsy Downloading/unpacking patsy Running setup.py (path:c:\users\josef\appdata\local\temp\pip_build_josef\patsy\setup.py) egg_info for package patsy no previous

Re: [Numpy-discussion] 64-bit windows numpy / scipy wheels for testing

2014-04-24 Thread josef . pktd
On Thu, Apr 24, 2014 at 7:20 PM, Charles R Harris wrote: > > > > On Thu, Apr 24, 2014 at 5:08 PM, wrote: > >> >> >> >> On Thu, Apr 24, 2014 at 7:00 PM, Charles R Harris < >> charlesr.har...@gmail.com> wrote: >> >>> >>> Hi Matthew, >>> >>> On Thu, Apr 24, 2014 at 3:56 PM, Matthew Brett >>> wrote

Re: [Numpy-discussion] 64-bit windows numpy / scipy wheels for testing

2014-04-24 Thread Charles R Harris
On Thu, Apr 24, 2014 at 5:08 PM, wrote: > > > > On Thu, Apr 24, 2014 at 7:00 PM, Charles R Harris < > charlesr.har...@gmail.com> wrote: > >> >> Hi Matthew, >> >> On Thu, Apr 24, 2014 at 3:56 PM, Matthew Brett >> wrote: >> >>> Hi, >>> >>> Thanks to Cark Kleffner's toolchain and some help from Cli

Re: [Numpy-discussion] 64-bit windows numpy / scipy wheels for testing

2014-04-24 Thread josef . pktd
On Thu, Apr 24, 2014 at 7:08 PM, wrote: > > > > On Thu, Apr 24, 2014 at 7:00 PM, Charles R Harris < > charlesr.har...@gmail.com> wrote: > >> >> Hi Matthew, >> >> On Thu, Apr 24, 2014 at 3:56 PM, Matthew Brett >> wrote: >> >>> Hi, >>> >>> Thanks to Cark Kleffner's toolchain and some help from Cli

Re: [Numpy-discussion] 64-bit windows numpy / scipy wheels for testing

2014-04-24 Thread josef . pktd
On Thu, Apr 24, 2014 at 7:00 PM, Charles R Harris wrote: > > Hi Matthew, > > On Thu, Apr 24, 2014 at 3:56 PM, Matthew Brett wrote: > >> Hi, >> >> Thanks to Cark Kleffner's toolchain and some help from Clint Whaley >> (main author of ATLAS), I've built 64-bit windows numpy and scipy >> wheels for

Re: [Numpy-discussion] 64-bit windows numpy / scipy wheels for testing

2014-04-24 Thread Nathaniel Smith
On Fri, Apr 25, 2014 at 12:00 AM, Charles R Harris wrote: > Cool. After all these long years... Now all we need is a box running tests > for CI. There is http://www.appveyor.com/ though I haven't tried doing anything with it yet... (yes it says ".NET" at the top, but then at the bottom it says

Re: [Numpy-discussion] 64-bit windows numpy / scipy wheels for testing

2014-04-24 Thread Charles R Harris
Hi Matthew, On Thu, Apr 24, 2014 at 3:56 PM, Matthew Brett wrote: > Hi, > > Thanks to Cark Kleffner's toolchain and some help from Clint Whaley > (main author of ATLAS), I've built 64-bit windows numpy and scipy > wheels for testing. > > The build uses Carl's custom mingw-w64 build with static li

[Numpy-discussion] 64-bit windows numpy / scipy wheels for testing

2014-04-24 Thread Matthew Brett
Hi, Thanks to Cark Kleffner's toolchain and some help from Clint Whaley (main author of ATLAS), I've built 64-bit windows numpy and scipy wheels for testing. The build uses Carl's custom mingw-w64 build with static linking. There are two harmless test failures on scipy (being discussed on the li

Re: [Numpy-discussion] Test error with ATLAS, Windows 64 bit

2014-04-24 Thread Carl Kleffner
Hi Julian, to distinguish between mingw32 and mingw-w64 we need something like this: #include if !defined(HAVE_EXPM1) || defined(__MINGW64_VERSION_MAJOR) instead of if !defined(HAVE_EXPM1) || defined(__MINGW32__) the latter is true for both: mingw32 and mingw-w64. I guess the mingw32 implemen

Re: [Numpy-discussion] Dates and times and Datetime64 (again)

2014-04-24 Thread Charles R Harris
On Thu, Apr 24, 2014 at 10:26 AM, Chris Barker - NOAA Federal < chris.bar...@noaa.gov> wrote: > On Apr 23, 2014, at 8:23 PM, Sankarshan Mudkavi > wrote: > > I've been quite busy for the past few weeks but I should be much freer > after next week and can pick up on this (fixing the code and actual

Re: [Numpy-discussion] Dates and times and Datetime64 (again)

2014-04-24 Thread Chris Barker - NOAA Federal
On Apr 23, 2014, at 8:23 PM, Sankarshan Mudkavi wrote: I've been quite busy for the past few weeks but I should be much freer after next week and can pick up on this (fixing the code and actually implement things). wonderful! Thanks. Chris Cheers, Sankarshan On Apr 23, 2014, at 5:58 PM, Chri