We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1dc8d0 commit b140d12Copy full SHA for b140d12
setup.py
@@ -31,10 +31,11 @@
31
def read_desc():
32
with open('README.rst', encoding='utf-8') as stream:
33
readme = stream.read()
34
- with open('CHANGES.rst', encoding='utf-8') as stream:
35
- changes = stream.read()
+ # CHANGES.rst includes sphinx-specific markup, so
+ # it can't be in the long description without some processing
36
+ # that we're not doing -- its invalid ReST
37
- return readme + '\n\n' + changes
38
+ return readme
39
40
def read_version_number():
41
VERSION_PATTERN = re.compile(r"__version__ = '([^']+)'")
0 commit comments