1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-26 23:36:08 +03:00

Fix pyenv setup

This commit is contained in:
Tae Won Ha 2021-12-12 17:18:24 +01:00
parent d0ce5ee7a5
commit d0be7c221a
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44

View File

@ -18,15 +18,15 @@ jobs:
brew install automake coreutils pyenv pyenv-virtualenv
- name: Set up Python env
run: |
pyenv install 3.9.7
pyenv virtualenv 3.9.7 com.qvacua.VimR.third-party
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init --path)"
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"
pyenv install 3.9.7
pyenv virtualenv 3.9.7 com.qvacua.VimR.third-party
pushd bin >/dev/null
pip install -r requirements.txt
python setup.py develop