From 3fea6bfe92b4257e6324d205778f074c59d98954 Mon Sep 17 00:00:00 2001 From: TD-er Date: Sat, 12 Sep 2020 18:03:09 +0200 Subject: [PATCH] [Gitpod] Apparently Gitpod still uses Python 2.7 pip install -U platformio to make it Python version independent. --- .gitpod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod.yml b/.gitpod.yml index 3d884ae2b..cddef1b0d 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,5 +1,5 @@ tasks: - - before: python3 -c "$(curl -fsSL https://raw.githubusercontent.com/platformio/platformio/develop/scripts/get-platformio.py)" && brew install uncrustify && pip3 install -r ./requirements.txt + - before: pip install -U platformio && brew install uncrustify && pip3 install -r ./requirements.txt image: file: .gitpod.Dockerfile