実行後に謎の警告

Tracのソース内で使っているC APIのバージョンがPython2.5のC APIと違うって事で警告が初めに出る。
一応動いているので問題はないと思うんだけど、気になるから覚書。

/usr/local/lib/python2.5/site-packages/libsvn/fs.py:5: RuntimeWarning: Python C API version mismatch for module _fs: This Python has API version 1013, module _fs has version 1012.
  import _fs
/usr/local/lib/python2.5/site-packages/libsvn/fs.py:5: RuntimeWarning: Python C API version mismatch for module swig_runtime_data2: This Python has API version 1013, module swig_runtime_data2 has version 1012.
  import _fs
/usr/local/lib/python2.5/site-packages/libsvn/core.py:5: RuntimeWarning: Python C API version mismatch for module _core: This Python has API version 1013, module _core has version 1012.
  import _core
/usr/local/lib/python2.5/site-packages/libsvn/delta.py:5: RuntimeWarning: Python C API version mismatch for module _delta: This Python has API version 1013, module _delta has version 1012.
  import _delta
/usr/local/lib/python2.5/site-packages/libsvn/repos.py:5: RuntimeWarning: Python C API version mismatch for module _repos: This Python has API version 1013, module _repos has version 1012.
  import _repos

TracInstall – The Trac Project
をみたんだけれど、同様の問題はなかった。
改めて読んでみると、Python2.5だとClearSilver10.4必須だとか、結構制限がある事が分かる。
最低限公式の一次情報くらいは読んでおこう。自戒。