Specify the version of setuptools

to avoid failing installing listconfig due to the old Python
This commit is contained in:
Takumi Sueda 2024-12-23 19:13:03 +09:00
parent 924216b934
commit 17c4c8b5a7

View File

@ -49,7 +49,7 @@ jobs:
- name: Install deps - 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 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 - name: Upgrade pip and setuptools
run: pip3 install -U pip setuptools run: pip3 install -U pip 'setuptools<71'
- name: Install listconfig - name: Install listconfig
run: pip3 install listconfig run: pip3 install listconfig
- name: Configure for Linux - name: Configure for Linux