Skip to content

Commit

Permalink
Migrate script-osx.sh to Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
pshenmic committed Dec 19, 2023
1 parent 7528a0e commit 091daf8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contrib/dash/actions/script-osx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
set -ev

export MACOSX_DEPLOYMENT_TARGET=10.13
export PY37BINDIR=/Library/Frameworks/Python.framework/Versions/3.7/bin/
export PATH=$PATH:$PY37BINDIR
export PY310BINDIR=/Library/Frameworks/Python.framework/Versions/3.10/bin/
export PATH=$PATH:$PY310BINDIR
echo osx build version is $DASH_ELECTRUM_VERSION

virtualenv -p ${PY37BINDIR}/python3 env
virtualenv -p ${PY310BINDIR}/python3 env
source env/bin/activate
PIP_CMD="pip"

Expand Down

0 comments on commit 091daf8

Please sign in to comment.