Skip to content

Commit

Permalink
back to pyenv :(
Browse files Browse the repository at this point in the history
  • Loading branch information
swistakm committed Dec 15, 2020
1 parent 833f34d commit 65ec70c
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .appveyor.yml
Expand Up @@ -151,14 +151,18 @@ for:

init:
- sh: |
source ~/venv${PY_VERSION}/bin/activate
python --version
if [[ "${PY_VERSION}" == "3.4" ]]; then
HOMEBREW_NO_AUTO_UPDATE=1 brew update
HOMEBREW_NO_AUTO_UPDATE=1 brew upgrade openssl
ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/
ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/
export HOMEBREW_NO_AUTO_UPDATE=1
brew update
brew install pyenv
pyenv install --skip-existing $PY_VERSION
pyenv local $PY_VERSION
eval "$(pyenv init -)"
else
source ~/venv${PY_VERSION}/bin/activate
fi
python --version
install:
# python requirements needed to create distribution
Expand Down

0 comments on commit 65ec70c

Please sign in to comment.