Skip to content

Commit

Permalink
Add explicit encoding to avoid error on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
hackdna committed Feb 27, 2023
1 parent a8ce2d9 commit 60d8bd6
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 @@ -19,10 +19,10 @@

package_data = {'forest.poplar.raw': ['noncode/*.csv', 'noncode/*.json']}

with open('README.md') as f:
with open('README.md', encoding='utf-8') as f:
readme = f.read()

with open('LICENSE.md') as f:
with open('LICENSE.md', encoding='utf-8') as f:
license = f.read()

setup(
Expand Down

0 comments on commit 60d8bd6

Please sign in to comment.