From be3a2c8ed5ff2f9afa1cd387cf608b095d3bf75f Mon Sep 17 00:00:00 2001 From: Hugo KULESZA Date: Wed, 4 Dec 2024 10:46:05 +0100 Subject: [PATCH] test without auditwheel repair Signed-off-by: Hugo KULESZA --- .github/workflows/dev-ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/dev-ci.yml b/.github/workflows/dev-ci.yml index 8481e65e0..a6d437025 100644 --- a/.github/workflows/dev-ci.yml +++ b/.github/workflows/dev-ci.yml @@ -48,10 +48,9 @@ jobs: - name: Build wheel run: | python3 setup.py bdist_wheel - auditwheel repair dist/*.whl - name: Install wheel - run: pip3 install wheelhouse/*.whl --user + run: pip3 install dist/*.whl --user - name: Run basic pypowsybl import working-directory: ./tests