From 76914d52ba5f53393b0355fb4c1a2529f5ae9793 Mon Sep 17 00:00:00 2001 From: Qi Zhao Date: Wed, 28 Aug 2024 11:25:58 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20install=20setuptools=20in?= =?UTF-8?q?=20Github=20Action?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6426069..aa42aa1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,7 +30,8 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | - pip install --upgrade pip + pip install pip -U + pip install setuptools -U pip install .[dev] - name: Lint with flake8