summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorAdam Turner <9087854+AA-Turner@users.noreply.github.com>2022-04-18 02:32:06 +0100
committerAdam Turner <9087854+AA-Turner@users.noreply.github.com>2022-04-22 04:21:12 +0100
commit55669f6cfc03e96cee236dc9b9cdeb1deb31cef0 (patch)
tree4578b4b0b93346e2356de779cf4c0c06f31e0668 /setup.py
parentc08bffde98391a193debbeaee9af8c4f5ef8c77f (diff)
downloadsphinx-git-55669f6cfc03e96cee236dc9b9cdeb1deb31cef0.tar.gz
Specify encoding
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 860aae57e..d12b9477e 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ from setuptools import find_packages, setup
import sphinx
-with open('README.rst') as f:
+with open('README.rst', encoding='utf-8') as f:
long_desc = f.read()
if sys.version_info < (3, 6):