fix ssl handshake error
This commit is contained in:
parent
c6f4c17597
commit
6c2b3d9ed6
2 changed files with 7 additions and 8 deletions
|
@ -48,16 +48,13 @@ pip install $MODULES
|
||||||
pip install dmgbuild==1.1.0
|
pip install dmgbuild==1.1.0
|
||||||
export PATH=${PATH}:/Library/Frameworks/Python.framework/Versions/2.7/bin
|
export PATH=${PATH}:/Library/Frameworks/Python.framework/Versions/2.7/bin
|
||||||
|
|
||||||
pip install jsonrpc certifi
|
# pyopenssl is needed because OSX ships an old version of openssl by default
|
||||||
|
# and python will use it without pyopenssl
|
||||||
# the default py2app (v0.9) has a bug that is fixed in the head of /metachris/py2app
|
pip install PyOpenSSL jsonrpc certifi
|
||||||
pip install git+https://github.com/metachris/py2app
|
|
||||||
|
|
||||||
NAME=`python setup.py --name`
|
NAME=`python setup.py --name`
|
||||||
VERSION=`python setup.py -V`
|
VERSION=`python setup.py -V`
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
# not totally sure if pyOpenSSl is needed (JIE)
|
|
||||||
pip install pyOpenSSL
|
|
||||||
|
|
||||||
|
|
||||||
if [ -z ${SKIP_PYLINT+x} ]; then
|
if [ -z ${SKIP_PYLINT+x} ]; then
|
||||||
|
@ -93,7 +90,10 @@ codesign -s "${LBRY_DEVELOPER_ID}" -f "${DEST}/dist/LBRYURIHandler.app/Contents/
|
||||||
codesign --deep -s "${LBRY_DEVELOPER_ID}" -f "${DEST}/dist/LBRYURIHandler.app/Contents/MacOS/LBRYURIHandler"
|
codesign --deep -s "${LBRY_DEVELOPER_ID}" -f "${DEST}/dist/LBRYURIHandler.app/Contents/MacOS/LBRYURIHandler"
|
||||||
codesign -vvvv "${DEST}/dist/LBRYURIHandler.app"
|
codesign -vvvv "${DEST}/dist/LBRYURIHandler.app"
|
||||||
|
|
||||||
python setup_app.py py2app
|
# py2app will skip _cffi_backend without explicitly including it
|
||||||
|
# and without this, we will get SSL handshake errors when connecting
|
||||||
|
# to bittrex
|
||||||
|
python setup_app.py py2app -i _cffi_backend
|
||||||
|
|
||||||
echo "Removing i386 libraries"
|
echo "Removing i386 libraries"
|
||||||
|
|
||||||
|
|
|
@ -31,4 +31,3 @@ base58==0.2.2
|
||||||
googlefinance==0.7
|
googlefinance==0.7
|
||||||
pyyaml==3.12
|
pyyaml==3.12
|
||||||
service_identity==16.0.0
|
service_identity==16.0.0
|
||||||
ndg-httpsclient==0.4.2
|
|
||||||
|
|
Loading…
Reference in a new issue