From ad4610aa6b2ac69db27da6666383c9720395d11b Mon Sep 17 00:00:00 2001 From: Gianmarco Fraccaroli Date: Mon, 9 Dec 2024 16:46:28 +0100 Subject: [PATCH 1/5] install python --- Earthfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Earthfile b/Earthfile index a36268e..da0924e 100644 --- a/Earthfile +++ b/Earthfile @@ -28,6 +28,10 @@ namada: RUN apt-get install -y gcc RUN apt-get install -y parallel + # install python 3.10 + RUN add-apt-repository ppa:deadsnakes/ppa -y + RUN apt install python3.10 + # needed for speculos RUN apt install -y \ git python3-pip pipx cmake gcc-arm-linux-gnueabihf libc6-dev-armhf-cross gdb-multiarch \ From 3466bcbc3a207038de657005b796c9c43a2075fa Mon Sep 17 00:00:00 2001 From: Gianmarco Fraccaroli Date: Mon, 9 Dec 2024 16:50:08 +0100 Subject: [PATCH 2/5] install python --- Earthfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Earthfile b/Earthfile index da0924e..c74287a 100644 --- a/Earthfile +++ b/Earthfile @@ -19,6 +19,7 @@ namada: ARG wasm_opt_version=119 RUN apt-get update -y + RUN apt-get software-properties-common RUN apt-get install -y protobuf-compiler RUN apt-get install -y build-essential RUN apt-get install -y clang-tools clang From 651e34e03fb3829f258886b80a6695a059f612c2 Mon Sep 17 00:00:00 2001 From: Gianmarco Fraccaroli Date: Mon, 9 Dec 2024 16:51:48 +0100 Subject: [PATCH 3/5] install python --- Earthfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Earthfile b/Earthfile index c74287a..6b7c613 100644 --- a/Earthfile +++ b/Earthfile @@ -19,7 +19,6 @@ namada: ARG wasm_opt_version=119 RUN apt-get update -y - RUN apt-get software-properties-common RUN apt-get install -y protobuf-compiler RUN apt-get install -y build-essential RUN apt-get install -y clang-tools clang @@ -30,6 +29,7 @@ namada: RUN apt-get install -y parallel # install python 3.10 + RUN apt software-properties-common RUN add-apt-repository ppa:deadsnakes/ppa -y RUN apt install python3.10 From 56c8d3e634c763aa106a40345d26634625cb6dda Mon Sep 17 00:00:00 2001 From: Gianmarco Fraccaroli Date: Mon, 9 Dec 2024 16:53:26 +0100 Subject: [PATCH 4/5] install python --- Earthfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Earthfile b/Earthfile index 6b7c613..2ebbc53 100644 --- a/Earthfile +++ b/Earthfile @@ -29,7 +29,7 @@ namada: RUN apt-get install -y parallel # install python 3.10 - RUN apt software-properties-common + RUN apt install software-properties-common -y RUN add-apt-repository ppa:deadsnakes/ppa -y RUN apt install python3.10 From 8c201595e10c9a060223672f3f50b79fb61cd668 Mon Sep 17 00:00:00 2001 From: Gianmarco Fraccaroli Date: Mon, 9 Dec 2024 16:58:26 +0100 Subject: [PATCH 5/5] install python --- Earthfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Earthfile b/Earthfile index 2ebbc53..334f396 100644 --- a/Earthfile +++ b/Earthfile @@ -27,11 +27,7 @@ namada: RUN apt-get install -y pkg-config RUN apt-get install -y gcc RUN apt-get install -y parallel - - # install python 3.10 - RUN apt install software-properties-common -y - RUN add-apt-repository ppa:deadsnakes/ppa -y - RUN apt install python3.10 + RUN apt-get install -y python3 # needed for speculos RUN apt install -y \