Skip to content

Commit 2e50f40

Browse files
committed
Reduce smoketest to Py 2.7 and Py 3.8
1 parent 62731e8 commit 2e50f40

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/smoketest.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ fi
3030
pyvers_tested=
3131

3232
# Run tests with both python2 and python3 (whatever versions the OS provides)
33-
for py in 2.7 3.8 3.6 ; do
33+
for py in 2.7 3.8 ; do
3434
echo "$0: # Smoketest with Python$py"
3535

3636
if ! python$py -V ; then
@@ -75,8 +75,8 @@ for py in 2.7 3.8 3.6 ; do
7575
fi
7676

7777
pip install --find-links "$wheeldir" confluent-kafka==$version
78-
# Install a prebuilt version that doesn't require a gcc toolchain
79-
pip install --find-links "$wheeldir" --binary-only :fastavro: confluent-kafka[avro]==$version
78+
# Install a prebuilt version of fastavro that doesn't require a gcc toolchain
79+
pip install --find-links "$wheeldir" --only-binary :fastavro: confluent-kafka[avro]==$version
8080
pip install --find-links "$wheeldir" confluent-kafka[protobuf]==$version
8181
pip install --find-links "$wheeldir" confluent-kafka[json]==$version
8282
fi

0 commit comments

Comments
 (0)