Install libpq-devel from yum

This commit is contained in:
Bryan Culver 2022-06-07 10:07:52 -04:00
parent 68da879894
commit f711c9e2bf
No known key found for this signature in database
GPG Key ID: C3FAA78AC311F42B

View File

@ -27,11 +27,7 @@ if [[ "${PACKAGE_NAME:-}" ]]; then
fi
# Install prerequisite libraries
curl -k -s https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
echo "deb http://apt.postgresql.org/pub/repos/apt buster-pgdg main" \
> /etc/apt/sources.list.d/pgdg.list
apt-get -y update
apt-get install -y libpq-dev
yum install -y libpq-devel
# Create the wheel packages
for pyver in $PYVERS; do