From 55fbe2499228eb2dc0cd1a6e11e5c8cacde76782 Mon Sep 17 00:00:00 2001 From: Robert Grimm Date: Tue, 8 Oct 2024 00:07:42 -0400 Subject: [PATCH] stop creating symbolic links to extension module in CI --- .github/workflows/ci.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b4526c..b00c598 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,15 +64,6 @@ jobs: - name: Build extension module run: pip install -e .[dev] - - name: Create symbolic links - if: runner.os != 'Windows' - run: | - mkdir -p prettypretty/color - ln -s '../color.abi3.so' prettypretty/color/gamut.abi3.so - ln -s '../color.abi3.so' prettypretty/color/spectrum.abi3.so - ln -s '../color.abi3.so' prettypretty/color/style.abi3.so - ln -s '../color.abi3.so' prettypretty/color/trans.abi3.so - - name: Typecheck and test Python code run: python -m runtest