Skip to content

Commit 7ceb398

Browse files
author
Ryan P
authored
Unblock 0.11.5 RC packaging (#403)
1 parent 292a9f9 commit 7ceb398

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

tools/test-manylinux.sh

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,16 @@ function run_single_in_docker {
5555
hash -r # let go of previous 'pip'
5656

5757
# Install modules
58+
59+
# TODO: revisit to avoid hardcoding dependencies
60+
pip install "futures;python_version=='2.7'"
61+
pip install "enum34;python_version=='2.7'"
62+
5863
pip install confluent_kafka --no-index -f $wheelhouse
59-
pip install pytest
64+
65+
# Pytest relies on a new version of six; later versions of pip fail to remove older versions gracefully
66+
# https://github.com/pypa/pip/issues/5247
67+
pip install pytest --ignore-installed six
6068

6169
# Verify that OpenSSL and zlib are properly linked
6270
python -c '

0 commit comments

Comments
 (0)