Skip to content

Commit

Permalink
Fix python version in local build
Browse files Browse the repository at this point in the history
  • Loading branch information
lnauta committed Apr 2, 2024
1 parent 3f627d0 commit 55f1e14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ chmod 2777 ${TEMP_BUILD_DIR}
# Build the documentation in a docker container
SCRIPT=$(cat <<EOF
umask 0002
virtualenv ~/venv
virtualenv -p python3.6 ~/venv
source ~/venv/bin/activate
# modified to support the sphinx default theme and markdown
pip install sphinx recommonmark sphinx_rtd_theme
Expand Down
2 changes: 1 addition & 1 deletion build_mac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ chmod 2777 ${TEMP_BUILD_DIR}
# Build the documentation in a docker container
SCRIPT=$(cat <<EOF
umask 0002
virtualenv ~/venv
virtualenv -p python3.6 ~/venv # adding the version to avoid py2.7: 3.7+ breaks due to ssl version clash with python lib, so we use 3.6
source ~/venv/bin/activate
# modified to support the sphinx default theme and markdown
pip install sphinx recommonmark sphinx_rtd_theme
Expand Down

0 comments on commit 55f1e14

Please sign in to comment.