File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change
1
+ urllib3 < 2.0.0 ;python_version < ="3.7"
2
+ urllib3
1
3
flake8
2
4
pytest == 4.6.9 ;python_version < ="3.0"
3
5
pytest >= 6.0.0 ;python_version >= "3.0"
4
6
pytest-timeout
5
7
requests-mock
6
8
trivup >= 0.8.3
9
+ fastavro == 1.8.0 ;python_version == "3.7"
10
+ fastavro >= 1.8.4 ;python_version > "3.7"
7
11
fastavro
8
12
avro >= 1.11.1 ,< 2
9
13
jsonschema
Original file line number Diff line number Diff line change @@ -89,12 +89,13 @@ for PYBIN in /opt/python/cp*/bin/; do
89
89
for PYTHON_VERSION in " ${PYTHON_VERSIONS[@]} " ; do
90
90
if [[ $PYBIN == * " $PYTHON_VERSION " * ]]; then
91
91
echo " ## Installing $PYBIN "
92
- " ${PYBIN} /pip" install confluent_kafka -f /io/wheelhouse
93
- " ${PYBIN} /python" -c ' import confluent_kafka; print(confluent_kafka.libversion())'
94
- " ${PYBIN} /pip" install -r /io/tests/requirements.txt
95
- " ${PYBIN} /pytest" /io/tests/test_Producer.py
92
+ " ${PYBIN} pip" -V
93
+ " ${PYBIN} pip" install confluent_kafka -f /io/wheelhouse
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
96
97
echo " ## Uninstalling $PYBIN "
97
- " ${PYBIN} / pip" uninstall -y confluent_kafka
98
+ " ${PYBIN} pip" uninstall -y confluent_kafka
98
99
break
99
100
fi
100
101
done
You can’t perform that action at this time.
0 commit comments