diff options
-rw-r--r-- | .builds/debian.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.builds/debian.yml b/.builds/debian.yml index e016720b..2cff3b11 100644 --- a/.builds/debian.yml +++ b/.builds/debian.yml @@ -10,7 +10,13 @@ environment: project: newspipe tasks: - dependencies: | - pip3 install --user poetry + curl https://pyenv.run | bash + export PYENV_ROOT="$HOME/.pyenv" + export PATH="$PYENV_ROOT/bin:$PATH" + eval "$(pyenv init --path)" + pyenv install 3.10.0 + pyenv global 3.10.0 + pip install --user poetry export PATH="$PATH:/home/build/.local/bin" cd ${project} poetry install |