summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build/appveyor.py3
-rwxr-xr-xscripts/build/build_manylinux_2_24.sh2
2 files changed, 3 insertions, 2 deletions
diff --git a/scripts/build/appveyor.py b/scripts/build/appveyor.py
index 39b3ebe..bd65007 100755
--- a/scripts/build/appveyor.py
+++ b/scripts/build/appveyor.py
@@ -661,7 +661,7 @@ class Options:
def py_ver(self):
"""The Python version to build as 2 digits string."""
rv = os.environ['PY_VER']
- assert rv in ('36', '37', '38', '39'), rv
+ assert rv in ('36', '37', '38', '39', '310'), rv
return rv
@property
@@ -747,6 +747,7 @@ class Options:
'37': '14.0',
'38': '14.0',
'39': '16.0',
+ '310': '16.0',
}
return vsvers[self.py_ver]
diff --git a/scripts/build/build_manylinux_2_24.sh b/scripts/build/build_manylinux_2_24.sh
index d83c841..6a9e992 100755
--- a/scripts/build/build_manylinux_2_24.sh
+++ b/scripts/build/build_manylinux_2_24.sh
@@ -27,7 +27,7 @@ if [[ "${PACKAGE_NAME:-}" ]]; then
fi
# Install prerequisite libraries
-curl -s https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
+curl -k -s https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
echo "deb http://apt.postgresql.org/pub/repos/apt stretch-pgdg main" \
> /etc/apt/sources.list.d/pgdg.list
apt-get -y update