From 07848c2f32b9c527973d050ae25571d381aed0c8 Mon Sep 17 00:00:00 2001 From: YiFei Zhu Date: Wed, 18 Oct 2023 11:44:42 -0700 Subject: [PATCH] github/workflows: Explicitly install setuptools --- .github/workflows/workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index f2493f3..9f9dc45 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -60,7 +60,7 @@ jobs: - name: Install if: ${{ !matrix.sdist }} - run: python3 setup.py build_ext --inplace + run: pip install setuptools && python3 setup.py build_ext --inplace env: CFLAGS: ${{ matrix.codecov && '--coverage' || ''}} -UNDEBUG - name: Install sdist