From f9cbce2b388cf5da3f9bcfc9f331a22ed0199b6a Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sat, 28 Nov 2020 04:25:31 -0500 Subject: [PATCH] fix setup.py install in github actions --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 769d9bd5..9470f395 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -70,8 +70,8 @@ jobs: - name: Install pip dependencies run: | - python -m pip install . - python -m pip install pytest bottle + python -m pip install pytest bottle wheel setuptools + python -m pip install -e . - name: Get npm cache dir id: npm-cache