From 564174f121281fe6f3297560cddeaff2ba28b862 Mon Sep 17 00:00:00 2001 From: Abbas Toof Date: Sun, 2 Jun 2024 21:13:58 +0300 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f17b939..2fd2f82 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,9 +13,6 @@ jobs: setup: runs-on: ubuntu-latest steps: - - name: Upgrade setuptools - run: pip install --upgrade setuptools - - name: Checkout code uses: actions/checkout@v3 # Checkout the repository code @@ -24,7 +21,9 @@ jobs: uses: actions/setup-python@v3 with: python-version: 3.11 # Use Python version 3.11 - + - name: Install setuptools + run: | + python -m pip install setuptools==58.0.4 # Install project dependencies - name: Install dependencies run: |