From 4029c960ae271e36af0c8935840f5340cbf3e432 Mon Sep 17 00:00:00 2001 From: Jeremy Chang Date: Thu, 18 Aug 2022 03:30:20 +0000 Subject: [PATCH] Add six to python backend requirements.txt We use "six" package for Python 2/3 compatibility. Python dependencies like looker sdk are already automatically installed by `yarn run python` so we should also install six at the same time to make the python backend easy to setup. My first time running it failed because six was not installed. --- demo/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/demo/requirements.txt b/demo/requirements.txt index 4f2a75b3..3554bac0 100644 --- a/demo/requirements.txt +++ b/demo/requirements.txt @@ -1 +1,2 @@ looker-sdk +six