| From: | Peter Eisentraut <peter(at)eisentraut(dot)org> |
|---|---|
| To: | pgsql-committers(at)lists(dot)postgresql(dot)org, Andrew Dunstan <andrew(at)dunslane(dot)net>, Bryan Green <dbryan(dot)green(at)gmail(dot)com> |
| Subject: | Re: pgsql: Enable Python Limited API for PL/Python on MSVC |
| Date: | 2026-01-15 09:36:01 |
| Message-ID: | 397fa815-c0cc-4531-9d09-0be3cc72c59a@eisentraut.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-committers |
This is failing on buildfarm member drongo:
<https://buildfarm.postgresql.org/cgi-bin/show_history.pl?nm=drongo&br=master>.
AFAICT, this is the only buildfarm member that tests Python on
Windows, so we have no additional results to compare with. It did pass
on Cirrus CI. Andrew/Bryan, could you figure out how the Python
installation on drongo is different?
On 14.01.26 10:53, Peter Eisentraut wrote:
> Enable Python Limited API for PL/Python on MSVC
>
> Previously, the Python Limited API was disabled on MSVC due to build
> failures caused by Meson not knowing to link against python3.lib
> instead of python3XX.lib when using the Limited API.
>
> This commit works around the Meson limitation by explicitly finding
> and linking against python3.lib on MSVC, and removes the preprocessor
> guard that was disabling the Limited API on MSVC in plpython.h.
>
> This requires python3.lib to be present in the Python installation,
> which is included when Python is installed.
>
> Author: Bryan Green <dbryan(dot)green(at)gmail(dot)com>
> Discussion: https://www.postgresql.org/message-id/flat/ee410de1-1e0b-4770-b125-eeefd4726a24%40eisentraut.org
>
> Branch
> ------
> master
>
> Details
> -------
> https://git.postgresql.org/pg/commitdiff/2bc60f86219b00a9ba23efab8f4bb8de21e64e2a
>
> Modified Files
> --------------
> meson.build | 16 +++++++++++++++-
> src/pl/plpython/plpython.h | 4 ----
> 2 files changed, 15 insertions(+), 5 deletions(-)
>
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Peter Eisentraut | 2026-01-15 09:58:20 | pgsql: plpython: Remove commented out code |
| Previous Message | Michael Paquier | 2026-01-15 00:38:02 | pgsql: Introduce routines to validate and free MVNDistinct and MVDepend |