Skip to content

Commit

Permalink
use python3 in nightly
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Nov 14, 2023
1 parent 7ed27a1 commit 37b283f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions scripts/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ stages:
set -e
eval `opam config env`
cd doc
python mk_api_doc.py --mld --z3py-package-path=../build/python/z3
python mk_params_doc.py
python3 mk_api_doc.py --mld --z3py-package-path=../build/python/z3
python3 mk_params_doc.py
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
cd ..
Expand Down
2 changes: 1 addition & 1 deletion src/api/c++/z3++.h
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ namespace z3 {
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 args
* @param body
Expand Down

0 comments on commit 37b283f

Please sign in to comment.