From 0611beca69fcdda814c2fd23f833d3608b59b6fe Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Fri, 15 Sep 2023 17:35:58 +0200 Subject: [PATCH] ci: fix building Python 3.7 extension on windows using delvewheel 1.5.1 See https://github.com/adang1345/delvewheel/issues/39 --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 13660315f..e265b52dc 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -217,7 +217,7 @@ jobs: # (but it won't tell which one). pip wheel -v -w ./psycopg_c/dist/ ./psycopg_c/ delvewheel repair --no-mangle "libiconv-2.dll;libwinpthread-1.dll" \ - -w ./wheelhouse/ psycopg_c/dist/*.whl + -w ./wheelhouse/ psycopg_c/dist/psycopg*.whl echo "DEPS=$DEPS $(ls ./wheelhouse/*.whl)" >> $GITHUB_ENV - name: Install Python packages -- 2.47.2