From: Paul K. <pki...@in...> - 2006-12-14 08:25:03
|
Hi I have a situation where I need to run pyode under 2 versions of python - 2.1 and 2.4. In order to do this, I need to compile pyODE under python 2.1 and 2.4, which I have done successfully. However I need to differentiate to the names of the libraries from the 2 versions (they both compile as ode.pyd), so I can specifically import one of them depending on which version of python is running. When I simply rename ode.pyd to ode21.pyd, the import command does not work (since I guess there is a naming difference between the compiled C code and the pyd name. So my question is, how can I compile pyODE to produce a filename of ode21.pyd? Thanks Paul |