From f926d939465bee666c791195c69c9e32a40b5bc5 Mon Sep 17 00:00:00 2001 From: BlankEclair Date: Sat, 8 Mar 2025 00:09:40 +1100 Subject: [PATCH] Workaround inconsistent naming for marisa-trie by not using wheel --- .github/workflows/python.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 3f8246f..554a5d0 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -44,9 +44,10 @@ jobs: run: | pyproject-build --wheel --outdir dist . cd dist - pip wheel -r ../.github/debci.txt --no-deps # FIXME: https://github.com/pytries/marisa-trie/issues/106 - mv marisa_trie-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl marisa_trie-1.2.1-py3-cp310-manylinux2014_x86_64.whl + # For some reason, building the wheel ourselves will yield the wanted file naming convention, + # so we disable binary packages/wheels for marisa-trie to do so. + pip wheel -r ../.github/debci.txt --no-deps --no-binary marisa_trie - name: wheel2deb run: | cd dist