From 082fc5d2f6e84ffbe60ee51d18f858b329763dc5 Mon Sep 17 00:00:00 2001 From: Jackson Mills Date: Mon, 20 Mar 2023 12:24:40 -0700 Subject: [PATCH] Add lxml as a requirement Whenever I try to follow the steps on xrpl-dev-portal to install Dactyl, the initial `dactyl_build` fails with the error `Couldn't find a tree builder with the features you requested: xml. Do you need to install a parser library?.` until I install `lxml` - I think that means that `lxml` should be in the requirements for the tool, although maybe I'm wrong. --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index e925f61..6d023c1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,3 +7,4 @@ textstat>=0.6.2 pyspellchecker>=0.7.0 ruamel.yaml>=0.17.21 Pygments>=2.13.0 +lxml>=4.9.2