8000 Merge pull request #682 from methane/patch-1 · pypa/packaging.python.org@794482f · GitHub
[go: up one dir, main page]

8000 Skip to content

Commit 794482f

Browse files
authored
Merge pull request #682 from methane/patch-1
Use utf-8 to read README
2 parents 886be54 + a275cb9 commit 794482f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/tutorials/packaging-projects.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Open :file:`setup.py` and enter the following content. Update the package name t
6969
7070
import setuptools
7171
72-
with open("README.md", "r") as fh:
72+
with open("README.md", "r", encoding="utf-8") as fh:
7373
long_description = fh.read()
7474
7575
setuptools.setup(

0 commit comments

Comments
 (0)
0