From: Daniele Varrazzo Date: Fri, 3 Sep 2021 21:57:48 +0000 (+0200) Subject: Drop building C wheel package X-Git-Tag: 3.0~87^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fb5a077953adaf3cd6104839ae4f03b5aaa7882b;p=thirdparty%2Fpsycopg.git 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. --- 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