Make 'kerberos' an optional feature in the Python wheel, to avoid the need to install MIT Kerberos on the system by default. Tidy up the Python versioning a little whilst passing. Fixes #6268

This commit is contained in:
Dave Page
2021-03-08 11:33:00 +00:00
parent 059dad747d
commit 5e40f9904d
8 changed files with 18 additions and 33 deletions

View File

@@ -13,7 +13,7 @@ Either build the sources or get them from macports or similar:
## Building
1. To bundle a different version of Python from the default of 3.9.0, set the
1. To bundle a different version of Python from the default of 3.9.2, set the
*PGADMIN_PYTHON_VERSION* environment variable, e.g:
export PGADMIN_PYTHON_VERSION=3.8.5

View File

@@ -47,8 +47,8 @@ if [ "x${PGADMIN_POSTGRES_DIR}" == "x" ]; then
fi
if [ "x${PGADMIN_PYTHON_VERSION}" == "x" ]; then
echo "PGADMIN_PYTHON_VERSION not set. Setting it to the default: 3.9.1"
export PGADMIN_PYTHON_VERSION=3.9.1
echo "PGADMIN_PYTHON_VERSION not set. Setting it to the default: 3.9.2"
export PGADMIN_PYTHON_VERSION=3.9.2
fi
source ${SCRIPT_DIR}/build-functions.sh