aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rwxr-xr-xpython/pyarmnn/setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/pyarmnn/setup.py b/python/pyarmnn/setup.py
index 1c84e6152a..ac6ee24b5c 100755
--- a/python/pyarmnn/setup.py
+++ b/python/pyarmnn/setup.py
@@ -34,7 +34,7 @@ def check_armnn_version(*args):
__current_dir = os.path.dirname(os.path.realpath(__file__))
-exec(open(os.path.join(__current_dir, 'src', 'pyarmnn', '_version.py')).read())
+exec(open(os.path.join(__current_dir, 'src', 'pyarmnn', '_version.py'), encoding="utf-8").read())
class ExtensionPriorityBuilder(build_py):