You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by sa...@apache.org on 2019/05/17 03:38:04 UTC

[pulsar] branch master updated: Fix website build with required Python dependency (#4287)

This is an automated email from the ASF dual-hosted git repository.

sanjeevrk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new f51385e  Fix website build with required Python dependency (#4287)
f51385e is described below

commit f51385e1ca2f91a16b2df8934c47ee27df2b17ae
Author: Matteo Merli <mm...@apache.org>
AuthorDate: Thu May 16 20:37:58 2019 -0700

    Fix website build with required Python dependency (#4287)
---
 site2/tools/python-doc-gen.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/site2/tools/python-doc-gen.sh b/site2/tools/python-doc-gen.sh
index 2d2bc30..640cab8 100755
--- a/site2/tools/python-doc-gen.sh
+++ b/site2/tools/python-doc-gen.sh
@@ -29,11 +29,12 @@ find $ROOT_DIR -name CMakeFiles | xargs rm -rf
 find $ROOT_DIR -name PulsarApi.pb.h | xargs rm -rf
 find $ROOT_DIR -name PulsarApi.pb.cc | xargs rm -rf
 cd $ROOT_DIR/pulsar-client-cpp
-cmake . 
+cmake .
 make -j8 _pulsar
 pip install enum34
 pip install six
 pip install fastavro
+pip install certifi
 
 DESTINATION=$ROOT_DIR/generated-site/api/python
 rm -fr $DESTINATION/{index.html,functions,pulsar}