From ad5e8e0470d85f3f58fe8fa85f7d7f49b7d2a5b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20KUBLER?= <gregoire.kubler@proton.me> Date: Mon, 4 Nov 2024 13:59:19 +0100 Subject: [PATCH] fix : cibuildwheel now doesn't uses auditwheel to repairwheels. This led to auditwheel retrieving all .so linked to aidge_backend_cuda & add them to the generated .whl file. Thus generating a 400Mo+ .whl pkg. Closes #32 Relates to aidge#67 --- .gitlab-ci.yml | 1 + pyproject.toml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1c26067..8e86900 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -43,6 +43,7 @@ release:pip:ubuntu: CUDA_MAJOR_VERSION='11' CUDA_MINOR_VERSION='8' SEARCH_PATH='/home/ubuntu/builds/$CI_RUNNER_SHORT_TOKEN/$CI_CONCURRENT_ID' + CIBW_REPAIR_WHEEL_COMMAND='' parallel: matrix: diff --git a/pyproject.toml b/pyproject.toml index 911af05..b51d1fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,6 +47,8 @@ test-command = "pytest {project}/aidge_backend_cuda/unit_tests" # "cp310-manylinux_x86_64" # ] +repair-wheel-command = "" + [tool.cibuildwheel.container-engine] # pass command line options to 'docker run' name = "docker" -- GitLab