From 67f68d22345d966a44c89aad640010d509ae643e Mon Sep 17 00:00:00 2001 From: Christian Boos <cboos@edgewall.org> Date: Mon, 18 Feb 2013 20:51:06 +0100 Subject: [PATCH] Fix setup.py so that bdist_wininst works. Leaving the maintainer's name as a string (as opposed to a unicode) was triggering a UnicodeDecodeError when running bdist_wininst with Python 2.7.3 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b4daa38..52d8ed9 100644 --- a/setup.py +++ b/setup.py @@ -171,7 +171,7 @@ setup(name='pygit2', url='http://github.com/libgit2/pygit2', classifiers=classifiers, license='GPLv2', - maintainer='J. David Ibáñez', + maintainer=u'J. David Ibáñez', maintainer_email='jdavid.ibp@gmail.com', long_description=long_description, packages = ['pygit2'],