Skip to content

Commit 9e864e0

Browse files
committed
Mulibuild update and zlib fix.
1 parent 53aa7bc commit 9e864e0

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

patch_auditwheel_whitelist.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ def add_zlib_versions():
1212
for line in manylinux_policy_lines:
1313
if "ZLIB" in line:
1414
if len(line) > 22:
15-
updated_line = line[:-2] + ', "1.2.9", "1.2.12"]'
15+
updated_line = line[:-2] + ', "1.2.9", "1.2.12", "1.2.13"]'
1616
else:
17-
updated_line = line[:-2] + '"1.2.9", "1.2.12"]'
17+
updated_line = line[:-2] + '"1.2.9", "1.2.12", "1.2.12"]'
1818
print("auditwheel patch: replace policy line \"%s\" with \"%s\"" % (line, updated_line))
1919
manylinux_policy_replacement = line.replace(line, updated_line)
2020
else:

scripts/install.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,5 @@ echo $ENABLE_CONTRIB > contrib.enabled
1515
echo $ENABLE_HEADLESS > headless.enabled
1616
echo $ENABLE_ROLLING > rolling.enabled
1717
set -x
18-
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
19-
pip install --upgrade pip
20-
fi
2118
install_run $PLAT
2219
set +x

0 commit comments

Comments
 (0)