From 74e53f911f6bfb25d394c7efb4187ed0e3ca362b Mon Sep 17 00:00:00 2001 From: Joshua Bronson Date: Wed, 2 Mar 2022 14:56:53 +0000 Subject: [PATCH] Update .gitpod.yml --- .gitpod.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index 322a235..ed8d792 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -18,10 +18,18 @@ github: # https://www.gitpod.io/docs/languages/python tasks: - - init: echo 'eval "$(pyenv init --path)"' >> ~/.bashrc.d/60-python `# https://github.com/gitpod-io/workspace-images/issues/664` && eval $(pyenv init --path) && pyenv install 3.10.2 && pyenv global 3.10.2 && pip -V | fgrep 'python 3.10' && pip install -U pip && pip install -r requirements/dev.txt && pre-commit install --install-hooks + - init: | + echo 'eval "$(pyenv init --path)"' >> ~/.bashrc.d/60-python + eval "$(pyenv init --path)" # https://github.com/gitpod-io/workspace-images/issues/664 + pyenv install 3.10.2 + pyenv global 3.10.2 + pip install -U pip + pip install -r requirements/dev.txt + pre-commit install --install-hooks vscode: extensions: + - ms-python.python - EditorConfig.EditorConfig - lextudio.restructuredtext - trond-snekvik.simple-rst