From 845548f27d96ac50d2523074a6620b198630f7f4 Mon Sep 17 00:00:00 2001 From: Coulton Theuer <60138157+theuerc@users.noreply.github.com> Date: Fri, 29 Sep 2023 21:48:49 -0400 Subject: [PATCH 1/3] Update .gitpod.yml with new installation command --- .gitpod.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index 9222639136a17..155c620aba4d7 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -13,10 +13,10 @@ tasks: mkdir -p .vscode cp gitpod/settings.json .vscode/settings.json git fetch --tags - python -m pip install -ve . --no-build-isolation --config-settings editable-verbose=true + python -m pip install -ve . --config-settings editable-verbose=true pre-commit install command: | - python -m pip install -ve . --no-build-isolation --config-settings editable-verbose=true + python -m pip install -ve . --config-settings editable-verbose=true echo "✨ Pre-build complete! You can close this terminal ✨ " # -------------------------------------------------------- From 77aa4bbfdca60a55ec8f6a48e710d37075103b03 Mon Sep 17 00:00:00 2001 From: Coulton Theuer <60138157+theuerc@users.noreply.github.com> Date: Fri, 29 Sep 2023 22:17:35 -0400 Subject: [PATCH 2/3] Update .gitpod.yml --- .gitpod.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitpod.yml b/.gitpod.yml index 155c620aba4d7..aa64c4c95234f 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -13,9 +13,11 @@ tasks: mkdir -p .vscode cp gitpod/settings.json .vscode/settings.json git fetch --tags + pip install --upgrade meson python -m pip install -ve . --config-settings editable-verbose=true pre-commit install command: | + pip install --upgrade meson python -m pip install -ve . --config-settings editable-verbose=true echo "✨ Pre-build complete! You can close this terminal ✨ " From f66977ccdb6e8c5fc3ca986c1f5b3bc4c3243b4e Mon Sep 17 00:00:00 2001 From: Coulton Theuer <60138157+theuerc@users.noreply.github.com> Date: Fri, 29 Sep 2023 22:24:19 -0400 Subject: [PATCH 3/3] Revert build instructions --- .gitpod.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index aa64c4c95234f..94bc32e3f9af6 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -14,11 +14,11 @@ tasks: cp gitpod/settings.json .vscode/settings.json git fetch --tags pip install --upgrade meson - python -m pip install -ve . --config-settings editable-verbose=true + python -m pip install -ve . --no-build-isolation --config-settings editable-verbose=true pre-commit install command: | pip install --upgrade meson - python -m pip install -ve . --config-settings editable-verbose=true + python -m pip install -ve . --no-build-isolation --config-settings editable-verbose=true echo "✨ Pre-build complete! You can close this terminal ✨ " # --------------------------------------------------------