Skip to content

Commit 203c47f

Browse files
committed
setup.sh: Test against libusb-1.0 v1.0.24
Also, change directory to repository root (which contains this script). Also, drop a now-irrelevant comment about pypy (2.7).
1 parent 190adeb commit 203c47f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

setup.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/sh
22
set -eu
3-
# pypy fails when installing the wheel: libusb.py compilation does not produce a .pyc .
4-
for python in /usr/bin/python3.9 /usr/bin/pypy3; do
5-
"$(dirname "$(realpath "$0")")"/runTestLibusb.sh "$python" https://github.com/libusb/libusb.git libusb.git master v1.0.19 v1.0.22
3+
cd "$(dirname "$(realpath "$0")")"
4+
for python_v in python3 pypy3; do
5+
./runTestLibusb.sh "$python_v" https://github.com/libusb/libusb.git libusb.git master v1.0.19 v1.0.22 v1.0.24
66
done
77
export I_KNOW_HOW_TO_RELEASE_PYTHON_LIBUSB1=1
88
echo "Fetching libusb1 windows binary distribution..."

0 commit comments

Comments
 (0)