From ba2e9f81ef5be491ea730ad30d2a6d9683b4a7d6 Mon Sep 17 00:00:00 2001 From: romainsacchi Date: Wed, 2 Oct 2024 15:33:39 +0200 Subject: [PATCH] Fix CI --- .github/workflows/main.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 516a0750..440ec4f6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,10 +13,6 @@ jobs: with: args: "./" - - name: Run isort - uses: jamescurtin/isort-action@master - with: - configuration: --profile black - name: Check for modified files id: git-check @@ -43,6 +39,13 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Install system dependencies for pyenv + run: | + sudo apt-get update + sudo apt-get install build-essential zlib1g-dev libffi-dev libssl-dev \ + libbz2-dev libreadline-dev libsqlite3-dev liblzma-dev \ + libncurses-dev tk-dev + - name: Install python version uses: gabrielfalcao/pyenv-action@v13 with: @@ -88,6 +91,7 @@ jobs: pip install build --user + --break-system-packages - name: Build a binary wheel and a source tarball run: >-