diff --git a/setup.py b/setup.py index 9574559b..c9dee6f1 100644 --- a/setup.py +++ b/setup.py @@ -16,8 +16,9 @@ with open("README.rst") as readme_file: readme = readme_file.read() -with open("HISTORY.rst") as history_file: - history = history_file.read() +with open("HISTORY.rst", "rb") as history_file: + # Norwegian characters in HISTORY.rst + history = history_file.read().decode("UTF-8") REQUIREMENTS = [ # "libecl", # Temporarily removed from requirements to solve problems elsewhere