Skip to content

Commit 50eb1d8

Browse files
committed
Use poetry
1 parent 5871956 commit 50eb1d8

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

tools/source-package-verification.sh

+3-6
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,16 @@
55
#
66
set -e
77

8-
pip install poetry
9-
poetry install --all-extras --no-root
10-
pip install tests/trivup/trivup-0.12.7.tar.gz
11-
pip install -U build
12-
138
lib_dir=dest/runtimes/$OS_NAME-$ARCH/native
149
tools/wheels/install-librdkafka.sh "${LIBRDKAFKA_VERSION#v}" dest
1510
export CFLAGS="$CFLAGS -I${PWD}/dest/build/native/include"
1611
export LDFLAGS="$LDFLAGS -L${PWD}/${lib_dir}"
1712
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$PWD/$lib_dir"
1813
export DYLD_LIBRARY_PATH="$DYLD_LIBRARY_PATH:$PWD/$lib_dir"
1914

20-
python3 -m pip install .
15+
pip install -U build poetry
16+
poetry install --all-extras
17+
pip install tests/trivup/trivup-0.12.7.tar.gz
2118

2219
if [[ $OS_NAME == linux && $ARCH == x64 ]]; then
2320
if [[ -z $TEST_CONSUMER_GROUP_PROTOCOL ]]; then

0 commit comments

Comments
 (0)