[bridgedb/main] Install python3 dependencies

commit ede084a1469385e1d8aec38d9eef2d501a6d3350 Author: meskio <meskio@torproject.org> Date: Tue Aug 24 11:57:05 2021 +0200 Install python3 dependencies Fixes the tests on the CI --- scripts/install-dependencies | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install-dependencies b/scripts/install-dependencies index 67dfde5..4b5e435 100755 --- a/scripts/install-dependencies +++ b/scripts/install-dependencies @@ -8,7 +8,7 @@ APT_FLAGS='-q --no-install-suggests --no-install-recommends' PIP=$(which pip) PIP_FLAGS='--no-binary :all' -DEPENDS="build-essential openssl sqlite3 python-dev python-setuptools" +DEPENDS="build-essential openssl sqlite3 python3-dev python3-setuptools" DEPENDS="${DEPENDS} libgeoip-dev geoip-database libjpeg-dev" HERE=$(dirname $0) @@ -19,7 +19,7 @@ if [ "$EUID" != "0" ] ; then SUDO=$(which sudo); fi if [ "$TRAVIS" == "true" ] ; then DEPENDS="${DEPENDS} realpath" else - DEPENDS="${DEPENDS} python-pip flog" + DEPENDS="${DEPENDS} python3-pip flog" fi if [ "$CI" == "true" ] ; then
participants (1)
-
meskio@torproject.org