From 1530f0a73201dbab9a55506a9a73b8fca6d1fa59 Mon Sep 17 00:00:00 2001 From: Boxuan Li Date: Wed, 14 Feb 2024 22:34:20 -0800 Subject: [PATCH] Fix missing setuptools package for regression test Our regression test CI does not pin python version - it simply uses 3.x. Since python 3.12, setuptools package, which is needed by ccm package we use, is no longer included by default. This fixes the problem by explicitly installing setuptools package. Fixes #4154 Signed-off-by: Boxuan Li --- .github/workflows/ci-benchmark.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci-benchmark.yml b/.github/workflows/ci-benchmark.yml index 34e5a0b63b..fdc1e1753d 100644 --- a/.github/workflows/ci-benchmark.yml +++ b/.github/workflows/ci-benchmark.yml @@ -58,6 +58,7 @@ jobs: - uses: actions/setup-python@v5 with: python-version: '3.x' + - run: pip install setuptools - run: pip install git+https://github.com/li-boxuan/ccm.git - uses: actions/checkout@v4