Hi Matthias, > Just a quick followup : I've packaged all of the coherence requirements > now, but also had to add an ugly patch to coherence itself in order > to load with Python 2.5. > > It seems like coherence isn't ready at all for Python 2.5... what is > the correct way to cleanly have ElementTree working for as many > versions of python as possible? Use something like this? (inspired by > what Philippe committed to Elisa today) : > > if sys.hexversion >= 0x20500f0: > import xml.etree.ElementTree > else: > import elementtree.ElementTree
> If so, I could probably provide a clean patch to the coherence > developers, since for now I've just replaced the import lines. thx for doing all that packaging work! There is now a Coherence branch with quite some changes for python 2.5 https://coherence.beebits.net/browser/branches/go-4-python-2.5 I hope to complete testing until Thursday and then I'll merge it and tag a 0.1 release. Regards, Frank
