Skip to content

Commit

Permalink
explicitly read README as utf-8
Browse files Browse the repository at this point in the history
Closes: #21
  • Loading branch information
jepler committed Sep 27, 2022
1 parent 3fba19f commit 394ae63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

import astmonkey

with open('README.rst') as f:
long_description = f.read()
with open('README.rst', 'rb') as f:
long_description = f.read().decode('utf-8', 'ignore')

setup(
name='astmonkey',
Expand Down

0 comments on commit 394ae63

Please sign in to comment.