From d00d4edb84ded255e1b55970d702a51d003cbda4 Mon Sep 17 00:00:00 2001 From: William Silversmith Date: Mon, 18 Dec 2023 17:26:14 -0500 Subject: [PATCH] ci: add setuptools and wheel before running install --- .github/workflows/run_tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 55a5e79..b144a4b 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -28,7 +28,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install pytest pybind11 + python -m pip install pytest pybind11 setuptools wheel - name: Compile run: python setup.py develop