]> git.ipfire.org Git - thirdparty/psycopg.git/commitdiff
Don't use --no-deps to install the pool package
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>
Wed, 25 Aug 2021 02:05:12 +0000 (04:05 +0200)
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>
Wed, 25 Aug 2021 02:05:34 +0000 (04:05 +0200)
It shouldn't be required at the moment, the package doesn't have any
dependency (although it does depend on psycopg).

.github/workflows/packages.yml

index 8672fa78a9b56376696e77245ce8267cc37aeb53..13b89e4ac5a30203e79e5574e90cc06f84d1c255 100644 (file)
@@ -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' }}