File python3-dateutil-utf8.patch of Package python3-dateutil
diff -uar a/setup.py b/setup.py --- a/setup.py 2012-06-02 23:25:14.980665500 -0600 +++ b/setup.py 2012-06-02 23:26:24.708667848 -0600 @@ -13,7 +13,7 @@ TOPDIR = os.path.dirname(__file__) or "." VERSION = re.search('__version__ = "([^"]+)"', - open(TOPDIR + "/dateutil/__init__.py").read()).group(1) + open(TOPDIR + "/dateutil/__init__.py", encoding="utf-8").read()).group(1) setup(name="python-dateutil",