From: Daniele Varrazzo Date: Wed, 6 Oct 2021 22:17:47 +0000 (+0200) Subject: Build Windows binary package with libpq 14 X-Git-Tag: 3.0~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=51d8daf1222870e90172f383cf538e7556b6aa42;p=thirdparty%2Fpsycopg.git Build Windows binary package with libpq 14 --- diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index e83b7529e..3790323ba 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -213,12 +213,13 @@ jobs: CIBW_ARCHS_WINDOWS: AMD64 x86 CIBW_BEFORE_BUILD_WINDOWS: pip install delvewheel CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: >- - delvewheel repair -w {dest_dir} --no-mangle "libiconv-2.dll;libwinpthread-1.dll" {wheel} + delvewheel repair -w {dest_dir} + --no-mangle "libiconv-2.dll;libwinpthread-1.dll" {wheel} CIBW_TEST_REQUIRES: ./psycopg[test] ./psycopg_pool CIBW_TEST_COMMAND: pytest {project}/tests -m "not slow" --color yes CIBW_ENVIRONMENT_WINDOWS: >- PSYCOPG_IMPL=binary - PATH="C:\\Program Files\\PostgreSQL\\13\\bin;$PATH" + PATH="C:\\Program Files\\PostgreSQL\\14\\bin;$PATH" PSYCOPG_TEST_DSN="host=127.0.0.1 user=postgres" - uses: actions/upload-artifact@v2