Skip to content

Commit 24c1f86

Browse files
authored
Update setup.py encoding='utf-8'
>> py .\setup.py Traceback (most recent call last): File "annotated_deep_learning_paper_implementations\setup.py", line 4, in <module> ^^^^^^^^ UnicodeDecodeError: 'gbk' codec can't decode byte 0xa8 in position 951: illegal multibyte sequence
1 parent ec3c736 commit 24c1f86

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import setuptools
22

3-
with open("readme.md", "r") as f:
3+
with open("readme.md", "r", encoding="utf-8") as f:
44
long_description = f.read()
55

66
setuptools.setup(

0 commit comments

Comments
 (0)