Re: [Numpy-discussion] Custom Dtype/Units discussion

2016-07-10 Thread Charles R Harris
On Sun, Jul 10, 2016 at 12:20 AM, Nathaniel Smith wrote: > Hi Ryan, > > I'll be and SciPy and I'd love to talk about this :-). Things are a > bit hectic for me on Mon/Tue/Wed between the Python Compilers Workshop > and my talk, but do you want to meet up Thursday maybe? > > I'll be at scipy also

Re: [Numpy-discussion] Custom Dtype/Units discussion

2016-07-10 Thread Ryan May
Sounds like an apt description of what this is intended to be. Ryan On Sun, Jul 10, 2016 at 10:12 PM, Nathan Goldbaum wrote: > Hi Ryan, > > As a maintainer of a unit-aware ndarray subclass, I'm also interested in > sitting in. > > Maybe this can be an informal BOF session? > > Nathan > > > On S

Re: [Numpy-discussion] Custom Dtype/Units discussion

2016-07-10 Thread Nathan Goldbaum
Hi Ryan, As a maintainer of a unit-aware ndarray subclass, I'm also interested in sitting in. Maybe this can be an informal BOF session? Nathan On Sunday, July 10, 2016, Ryan May wrote: > Hi Nathaniel, > > Thursday works for me; anyone else interested is welcome to join. > > Ryan > > On Sun,

Re: [Numpy-discussion] Custom Dtype/Units discussion

2016-07-10 Thread Ryan May
Hi Nathaniel, Thursday works for me; anyone else interested is welcome to join. Ryan On Sun, Jul 10, 2016 at 12:20 AM, Nathaniel Smith wrote: > Hi Ryan, > > I'll be and SciPy and I'd love to talk about this :-). Things are a > bit hectic for me on Mon/Tue/Wed between the Python Compilers Works

Re: [Numpy-discussion] F2PY subroutine referenced in another file

2016-07-10 Thread Jonathan Stickel
Andy First compile "othermodule" with fortran (not f2py): $ gfortran -shared -o libothermodule.so othermodule.f90 Then link to it when compiling "mainmodule" with f2py: $ f2py -c -L[path to libothermodule.so] -lothermodule -m mainmodule mainmodule.f90 You can also make othermodule a static