From 71e08ca8ccd192fc6bf4922df1ff4c791f7c32c7 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver <thomas@kluyver.me.uk> Date: Fri, 7 Feb 2025 14:50:14 +0000 Subject: [PATCH] Skip abi3audit in CI --- .gitlab-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f179269..b9b2f74 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,8 +23,9 @@ test: script: - $PYTHON -m build - auditwheel repair dist/*.whl - - venv/bin/pip install pytest abi3audit - - venv/bin/abi3audit -vs wheelhouse/*.whl + # Re-enable abi3audit when we go back to the stable ABI (dropping support for Py 3.10) + - venv/bin/pip install pytest #abi3audit + #- venv/bin/abi3audit -vs wheelhouse/*.whl - venv/bin/pip install wheelhouse/*.whl - venv/bin/pytest artifacts: -- GitLab