Re: [Numpy-discussion] f2py output module name

2016-07-05 Thread klo uo
So on Linux too, there is "ABI" suffix too, for generated module... I misunderstood. I was renaming generated module to "fib3.pyd" to be able to do "import fib3", but now I see it's not necessary - it's importable the same regardless the name of generated module :) Thanks ___

Re: [Numpy-discussion] f2py output module name

2016-07-05 Thread Ralf Gommers
On Tue, Jul 5, 2016 at 9:18 PM, klo uo wrote: > Hi, I'm following this guide: > http://docs.scipy.org/doc/numpy-dev/f2py/getting-started.html#the-quick-and-smart-way > > I'm on Windows with gfortran and VS2015. When I run: > > f2py -c -m fib3 fib3.f > > as output I dont get "fib3.pyd", but "f

[Numpy-discussion] f2py output module name

2016-07-05 Thread klo uo
Hi, I'm following this guide: http://docs.scipy.org/doc/numpy-dev/f2py/getting-started.html#the-quick-and-smart-way I'm on Windows with gfortran and VS2015. When I run: f2py -c -m fib3 fib3.f as output I dont get "fib3.pyd", but "fib3.cp35-win_amd64.pyd". Does anyone know how to get correct