From 17c4c8b5a7407d7c7ecf19f2cce522013875a9e3 Mon Sep 17 00:00:00 2001 From: Takumi Sueda Date: Mon, 23 Dec 2024 19:13:03 +0900 Subject: [PATCH] Specify the version of setuptools to avoid failing installing listconfig due to the old Python --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8bbe60f..97c8e55 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,7 +49,7 @@ jobs: - name: Install deps run: sudo apt update && sudo apt install build-essential bison flex libncurses5-dev gcc-arm-linux-gnueabi qemu-user-static debootstrap python3-pip - name: Upgrade pip and setuptools - run: pip3 install -U pip setuptools + run: pip3 install -U pip 'setuptools<71' - name: Install listconfig run: pip3 install listconfig - name: Configure for Linux