From 0061a32a7434a2d281efe7c2137b510e968312c9 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Mon, 14 Nov 2022 21:46:07 -0500 Subject: [PATCH] ask for tahoe-lafs in our env it won't work because there is no zfec wheel and the naive attempt to build fails --- app/app/build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/app/build.gradle b/app/app/build.gradle index 68903d5..3575581 100644 --- a/app/app/build.gradle +++ b/app/app/build.gradle @@ -42,6 +42,11 @@ android { // Android UI demo pip { install "Pygments==2.2.0" // Also used in Java API demo + install "setuptools>=45" + install "cbor2==4.1.2" + // latest tahoe-lafs fails to install because pycddl fails to install + // pycddl fails to install because it has no setup.py + install "tahoe-lafs==1.17.1" } staticProxy "chaquopy.demo.ui_demo" -- GitLab