From fb5a077953adaf3cd6104839ae4f03b5aaa7882b Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Fri, 3 Sep 2021 23:57:48 +0200 Subject: [PATCH] Drop building C wheel package It cannot be distributed on PyPI, and it makes sense that it's built on the client, so just distribute the .tar.gz. --- .github/workflows/packages.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index aceb97d43..25ea195de 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -86,7 +86,6 @@ jobs: matrix: include: - {package: psycopg, impl: python} - - {package: psycopg_c, impl: c} - {package: psycopg_pool, impl: python} steps: @@ -107,13 +106,6 @@ jobs: pip install -e ./psycopg_pool if: ${{ matrix.package == 'psycopg' }} - - name: Install the C package and test requirements - run: |- - pip install dist/*.whl - pip install -e ./psycopg[test] - pip install -e ./psycopg_pool - if: ${{ matrix.package == 'psycopg_c' }} - - name: Install the Python pool package and test requirements run: |- pip install dist/*.whl -- 2.47.3