"driver/src/conv_driver.cpp" did not exist on "69fea593ec9355b3b4a19845897db4a36327b55d"
Commit c481e86d authored by Guoxin's avatar Guoxin Committed by liuzhe-lz
Browse files

BUG FIX: define read file encoding as utf-8 (#1508)

parent aa4bb1f6
......@@ -40,7 +40,7 @@ for (dirpath, dirnames, filenames) in walk('./nni'):
files = [path.normpath(path.join(dirpath, filename)) for filename in filenames]
data_files.append((path.normpath(dirpath), files))
with open('../../README.md', 'r') as fh:
with open('../../README.md', 'r', encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment