From: Daniele Varrazzo Date: Wed, 25 Aug 2021 02:05:12 +0000 (+0200) Subject: Don't use --no-deps to install the pool package X-Git-Tag: 3.0.beta1~39 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7b16d47c599e26ddf1f52922e2d1cc7c1b336b72;p=thirdparty%2Fpsycopg.git Don't use --no-deps to install the pool package It shouldn't be required at the moment, the package doesn't have any dependency (although it does depend on psycopg). --- diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index 8672fa78a..13b89e4ac 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -30,19 +30,19 @@ jobs: - name: Install the Python package and test requirements run: |- pip install `ls dist/psycopg-*.tar.gz`[test] - pip install -e ./psycopg_pool --no-deps + pip install -e ./psycopg_pool if: ${{ matrix.package == 'psycopg' }} - name: Install the C package and test requirements run: |- pip install dist/psycopg-c-*.tar.gz pip install -e ./psycopg[test] - pip install -e ./psycopg_pool --no-deps + pip install -e ./psycopg_pool if: ${{ matrix.package == 'psycopg_c' }} - name: Install the Python pool package and test requirements run: |- - pip install `ls dist/psycopg-pool-*.tar.gz` --no-deps + pip install dist/psycopg-pool-*.tar.gz pip install -e ./psycopg[test] if: ${{ matrix.package == 'psycopg_pool' }}