Skip to content

Commit

Permalink
Solve setup.py issue when LANG!=utf-8 (#140)
Browse files Browse the repository at this point in the history
* Solve setup.py issue when LANG!=utf-8
  • Loading branch information
berland authored Apr 24, 2020
1 parent dd9989b commit d5c95bd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d5c95bd

Please sign in to comment.