Skip to content

Commit 37b283f

Browse files
use python3 in nightly
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
1 parent 7ed27a1 commit 37b283f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/nightly.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ stages:
103103
set -e
104104
eval `opam config env`
105105
cd doc
106-
python mk_api_doc.py --mld --z3py-package-path=../build/python/z3
107-
python mk_params_doc.py
106+
python3 mk_api_doc.py --mld --z3py-package-path=../build/python/z3
107+
python3 mk_params_doc.py
108108
mkdir api/html/ml
109109
ocamldoc -html -d api/html/ml -sort -hide Z3 -I $( ocamlfind query zarith ) -I ../build/api/ml ../build/api/ml/z3enums.mli ../build/api/ml/z3.mli
110110
cd ..

src/api/c++/z3++.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ namespace z3 {
368368
func_decl recfun(char const * name, sort const & d1, sort const & d2, sort const & range);
369369

370370
/**
371-
* \brief add function definition body to declaration decl. decl needs to be declared using context::<recfun>.
371+
* \brief add function definition body to declaration decl. decl needs to be declared using context::recfun.
372372
* @param decl
373373
* @param args
374374
* @param body

0 commit comments

Comments
 (0)