Skip to content

Commit 4a846a1

Browse files
authored
Merge pull request #196 from NVIDIA/fix_setup_py
fix(//py): Fix long description section of setup.py
2 parents 8ea4870 + efd2099 commit 4a846a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ def run(self):
196196
)
197197
]
198198

199-
with open("README.md", "r") as fh:
199+
with open("README.md", "r", encoding="utf-8") as fh:
200200
long_description = fh.read()
201201

202202
setup(

0 commit comments

Comments
 (0)