We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 292a9f9 commit 7ceb398Copy full SHA for 7ceb398
tools/test-manylinux.sh
@@ -55,8 +55,16 @@ function run_single_in_docker {
55
hash -r # let go of previous 'pip'
56
57
# 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
63
pip install confluent_kafka --no-index -f $wheelhouse
- 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
68
69
# Verify that OpenSSL and zlib are properly linked
70
python -c '
0 commit comments