From 79c245836e8795c8174f6b451cf4fed2d2a78637 Mon Sep 17 00:00:00 2001 From: Carlos Paniagua Date: Tue, 12 Nov 2024 00:01:35 -0500 Subject: [PATCH] chore: add setuptools installation step in CI workflow --- .github/workflows/CI.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 9ec1a154..db49826e 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -30,6 +30,8 @@ jobs: python-version: '3.12' - name: update pip run: python -m pip install -U pip + - name: install setuptools + run: python -m pip install setuptools - name: install python deps run: python -m pip install -U -r requirements.txt - uses: julia-actions/setup-julia@v2