From 1184a314a1bb48214ed516046d07f89199ff4aa4 Mon Sep 17 00:00:00 2001 From: Anichitei Ionel-Cristinel <49393881+ianichitei@users.noreply.github.com> Date: Fri, 31 Jul 2020 17:29:10 +0300 Subject: [PATCH] Install setuptools before building pydis --- .github/workflows/c-cpp.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 297d02b..0ab8113 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -39,9 +39,12 @@ jobs: make -j$(nproc) cd .. cd .. + - name: Install setuptools + run: | + python3 -m pip install --upgrade pip + python3 -m pip install setuptools - name: Build pydis run: | cd pydis python3 setup.py build cd .. -