Skip to content

Commit f617ffb

Browse files
committed
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into dev_update_reader_doc
2 parents 1961d6b + a448fbe commit f617ffb

File tree

219 files changed

+2407
-1024
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

219 files changed

+2407
-1024
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ option(COVERALLS_UPLOAD "Package code coverage data to coveralls" OFF)
5353
option(ON_TRAVIS "Exclude special unit test on Travis CI" OFF)
5454
option(WITH_C_API "Compile PaddlePaddle with C-API(Prediction)" OFF)
5555
# TODO: Only compile PaddlePaddle fluid version by WITH_FLUID option.
56-
option(WITH_FLUID "Compile PaddlePaddle fluid only(TODO)" ON)
56+
option(WITH_FLUID "Compile PaddlePaddle fluid only(TODO)" OFF)
5757
option(WITH_GOLANG "Compile PaddlePaddle with GOLANG" OFF)
5858
option(GLIDE_INSTALL "Download and install go dependencies " ON)
5959
option(USE_NNPACK "Compile PaddlePaddle with NNPACK library" OFF)

Dockerfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,14 @@ RUN localedef -i en_US -f UTF-8 en_US.UTF-8
5353

5454
# FIXME: due to temporary ipykernel dependency issue, specify ipykernel jupyter
5555
# version util jupyter fixes this issue.
56+
57+
# specify sphinx version as 1.5.6 and remove -U option for [pip install -U
58+
# sphinx-rtd-theme] since -U option will cause sphinx being updated to newest
59+
# version(1.7.1 for now), which causes building documentation failed.
5660
RUN pip install --upgrade pip && \
5761
pip install -U wheel && \
58-
pip install -U docopt PyYAML sphinx && \
59-
pip install -U sphinx-rtd-theme==0.1.9 recommonmark
62+
pip install -U docopt PyYAML sphinx==1.5.6 && \
63+
pip install sphinx-rtd-theme==0.1.9 recommonmark
6064

6165
RUN pip install pre-commit 'ipython==5.3.0' && \
6266
pip install 'ipykernel==4.6.0' 'jupyter==1.0.0' && \

0 commit comments

Comments
 (0)