From bc30e8a7ce8615117051f5ec0353c615b742ab66 Mon Sep 17 00:00:00 2001
From: Andreas Kloeckner <inform@tiker.net>
Date: Thu, 8 Oct 2015 17:06:11 -0500
Subject: [PATCH] Use UTF-8 to read isl source

---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 1f7faae..1812ae2 100644
--- a/setup.py
+++ b/setup.py
@@ -145,7 +145,7 @@ def main():
             if "isl_ast_int.c" in fn and conf["USE_SHIPPED_IMATH"]:
                 continue
 
-            inf = open(fn, "rt", encoding="utf-8")
+            inf = open(fn, "r", encoding="utf-8")
             try:
                 contents = inf.read()
             finally:
-- 
GitLab