diff --git a/setup.py b/setup.py index 3819752..629885f 100644 --- a/setup.py +++ b/setup.py @@ -14,8 +14,8 @@ def has_gpu(): return False -with open("README.md", "r") as fh: - long_description = fh.read() +with open("README.md", "rb") as fh: + long_description = fh.read().decode("utf-8") install_requires = ["numpy"]