Skip to content

Commit fa54851

Browse files
committed
fixed encoding issue
1 parent 36c7416 commit fa54851

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
VERSION = "0.2.2"
1+
VERSION = "0.2.3"
22

33
from setuptools import setup, find_packages
44

5-
with open("readme.md", "r") as f:
5+
with open("readme.md", "r", encoding="utf-8") as f:
66
long_description = f.read()
77

8-
with open("requirements.txt") as f:
8+
with open("requirements.txt", "r", encoding="utf-8") as f:
99
requires = f.read().splitlines()
1010

1111
setup(

0 commit comments

Comments
 (0)