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 1eb8bea commit dacc972Copy full SHA for dacc972
tools/build-manylinux.sh
@@ -89,7 +89,8 @@ for PYBIN in /opt/python/cp*/bin; do
89
for PYTHON_VERSION in "${PYTHON_VERSIONS[@]}"; do
90
if [[ $PYBIN == *"$PYTHON_VERSION"* ]]; then
91
echo "## Installing $PYBIN"
92
- "${PYBIN}/pip" install confluent_kafka -f /io/wheelhouse
+ "${PYBIN}/pip" -V
93
+ "${PYBIN}/pip" install --no-index -f /io/wheelhouse confluent_kafka
94
"${PYBIN}/python" -c 'import confluent_kafka; print(confluent_kafka.libversion())'
95
"${PYBIN}/pip" install -r /io/tests/requirements.txt
96
"${PYBIN}/pytest" /io/tests/test_Producer.py
0 commit comments