|
From: Gökhan S. <gok...@gm...> - 2012-10-11 16:50:51
|
On Thu, Oct 11, 2012 at 3:49 AM, Damon McDougall
<dam...@gm...>wrote:
>
> Gökhan, did you implement the symlink fix? If so, would you mind
> making a pull request out of it? I was just about to look into doing
> this, but if you've done it already that'd save us some effort rolling
> out fixes for 1.2.
>
> Cheers.
> Damon
>
Hi Damon,
I think adding these lines before execfile line in setupegg.py should fix
it:
import os
os.chdir('lib')
if not os.path.isdir('dateutil'):
os.symlink('dateutil_py2', 'dateutil')
os.chdir('..')
Could you give it a test? Do we require a similar symlink for py3?
Thanks.
--
Gökhan
|