Skip to content

Commit 3e9a438

Browse files
bors[bot]jrinder42
andauthored
Merge #343
343: Windows OS encoding issue r=alallema a=jrinder42 ## Type of PR Bug fix - Issue #342 ## Description Explicitly add the encoding type when creating the long description in the setup.py script, otherwise running tox throws an error in Windows Co-authored-by: Jordan Rinder <[email protected]>
2 parents d2d4a02 + 2aa8cfc commit 3e9a438

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

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

3-
with open("README.md", "r") as fh:
3+
with open("README.md", "r", encoding="utf8") as fh:
44
long_description = fh.read()
55

66
setup(

0 commit comments

Comments
 (0)