MilesCranmer commited on
Commit
9f827be
1 Parent(s): 7135815

Ensure README is read as utf8

Browse files
Files changed (1) hide show
  1. setup.py +1 -1
setup.py CHANGED
@@ -1,7 +1,7 @@
1
  import setuptools
2
 
3
  try:
4
- with open("README.md", "r") as fh:
5
  long_description = fh.read()
6
  except FileNotFoundError:
7
  long_description = ""
 
1
  import setuptools
2
 
3
  try:
4
+ with open("README.md", "r", encoding="utf8") as fh:
5
  long_description = fh.read()
6
  except FileNotFoundError:
7
  long_description = ""