From 28ecad81bdc9e497c67ce2fbb10dfac4dd1d4771 Mon Sep 17 00:00:00 2001 From: Robert Carrington Date: Tue, 30 May 2017 21:03:35 -0500 Subject: [PATCH] Fixed setup.py bug by turning encoding into a keyword argument. Encoding parameter was being passed in the position belonging to the buffering parameter --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7c891f1..95acbc2 100755 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ packages = [ # About dict to store version and package info about = dict() -with open(os.path.join(here, 'maya', '__version__.py'), 'r', 'utf-8') as f: +with open(os.path.join(here, 'maya', '__version__.py'), 'r', encoding='utf-8') as f: exec(f.read(), about) setup(