Skip to content

Commit

Permalink
fix: add encoding when open files
Browse files Browse the repository at this point in the history
  • Loading branch information
bakkelim committed Apr 27, 2022
1 parent fc554a7 commit a5406ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import setuptools
with open("version.py") as fp:
with open("version.py", encoding="utf8") as fp:
exec(fp.read())

long_description = (
open('README.md').read()
open('README.md', encoding="utf8").read()
+ '\n\n' +
open('CHANGELOG.md').read()
open('CHANGELOG.md', encoding="utf8").read()
+ '\n')


Expand Down

0 comments on commit a5406ea

Please sign in to comment.