Skip to content

Commit

Permalink
fix(//py): Fix long description section of setup.py
Browse files Browse the repository at this point in the history
Thanks to @mneilly for catching this

Signed-off-by: Naren Dasan <naren@narendasan.com>
Signed-off-by: Naren Dasan <narens@nvidia.com>
  • Loading branch information
narendasan committed Oct 22, 2020
1 parent e4a4574 commit efd2099
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def run(self):
)
]

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

setup(
Expand Down

0 comments on commit efd2099

Please sign in to comment.