We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 393b3bd commit b09c1ceCopy full SHA for b09c1ce
2 files changed
python/paddle/README.md python/paddle/README.rstpython/paddle/README.md renamed to python/paddle/README.rst
python/setup.py.in
@@ -511,10 +511,10 @@ else:
511
512
# Log for PYPI
513
if sys.version_info > (3,0):
514
- with open("@PADDLE_BINARY_DIR@/python/paddle/README.md", "r", encoding='UTF-8') as f:
+ with open("@PADDLE_BINARY_DIR@/python/paddle/README.rst", "r", encoding='UTF-8') as f:
515
long_description = f.read()
516
else:
517
- with open("@PADDLE_BINARY_DIR@/python/paddle/README.md", "r")as f:
+ with open("@PADDLE_BINARY_DIR@/python/paddle/README.rst", "r")as f:
518
long_description = unicode(f.read(), 'UTF-8')
519
520
with redirect_stdout():
0 commit comments