Comment 2 for bug 1302963

Revision history for this message
Greg Lutostanski (lutostag) wrote :

parsedatetime has an optional dependency on a specific version python-pyicu, which is not documented -- it seems that the current trusty version 1.5-2ubuntu4 does not play nice.

Workaround is to explicity disable pyicu, for example use:

import parsedatetime.parsedatetime as pdtal = pdt.Calendar()
cal = pdt.Calendar(pdt.Constants(usePyICU=False))

I'll dig and see if I can come up with the exact pyicu version dependency parsedatetime expects.