3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-07 09:55:19 +00:00

use python3 in nightly

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2023-11-14 08:54:10 -08:00
parent 7ed27a1f41
commit 37b283fab9
2 changed files with 3 additions and 3 deletions

View file

@ -103,8 +103,8 @@ stages:
set -e set -e
eval `opam config env` eval `opam config env`
cd doc cd doc
python mk_api_doc.py --mld --z3py-package-path=../build/python/z3 python3 mk_api_doc.py --mld --z3py-package-path=../build/python/z3
python mk_params_doc.py python3 mk_params_doc.py
mkdir api/html/ml mkdir api/html/ml
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 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
cd .. cd ..

View file

@ -368,7 +368,7 @@ namespace z3 {
func_decl recfun(char const * name, sort const & d1, sort const & d2, sort const & range); func_decl recfun(char const * name, sort const & d1, sort const & d2, sort const & range);
/** /**
* \brief add function definition body to declaration decl. decl needs to be declared using context::<recfun>. * \brief add function definition body to declaration decl. decl needs to be declared using context::recfun.
* @param decl * @param decl
* @param args * @param args
* @param body * @param body