Skip to content

Commit b09c1ce

Browse files
fix whl package push pypi (#31585)
* fix whl package push pypi * add rst
1 parent 393b3bd commit b09c1ce

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

File renamed without changes.

python/setup.py.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -511,10 +511,10 @@ else:
511511

512512
# Log for PYPI
513513
if sys.version_info > (3,0):
514-
with open("@PADDLE_BINARY_DIR@/python/paddle/README.md", "r", encoding='UTF-8') as f:
514+
with open("@PADDLE_BINARY_DIR@/python/paddle/README.rst", "r", encoding='UTF-8') as f:
515515
long_description = f.read()
516516
else:
517-
with open("@PADDLE_BINARY_DIR@/python/paddle/README.md", "r")as f:
517+
with open("@PADDLE_BINARY_DIR@/python/paddle/README.rst", "r")as f:
518518
long_description = unicode(f.read(), 'UTF-8')
519519

520520
with redirect_stdout():

0 commit comments

Comments
 (0)