[EMAIL PROTECTED] schrieb: > I have several TG applications that I have recently upgraded to the > current stable version. They are isolated in workingenv sandboxes. > When starting the applications I know get this in the output... > > /home/pkraus/tools/tg_app/lib/python2.4/RuleDispatch-0.5a0.dev_r2306- > py2.5-linux-i686.egg/dispatch/strategy.py:485: RuntimeWarning: Python > C API version mismatch for module _d_speedups: This Python has API > version 1012, module _d_speedups has version 1013. > > on all applications. Everything is working but I am not sure what I am > looking at or how to correct it.
You are using Python 2.5 with a workingenv that has been created with Python 2.4. This means that C-extensions will complain that they have been compiled with a different API version. You should re-create your workingenv* with Python 2.5 and re-install TG and the requirements. Chris * You might consider switching to virtualenv as well. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

