From 56688a6c507aeabd137d79dd8fe38aae156b4fc2 Mon Sep 17 00:00:00 2001 From: Hugo Osvaldo Barrera Date: Fri, 9 Apr 2021 19:17:08 +0200 Subject: [PATCH] Avoid installing any dependencies from PyPI This is to fully ensure that we're using just distribution packages and not actually fetching newer stuff from PyPI. --- .builds/archlinux.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.builds/archlinux.yaml b/.builds/archlinux.yaml index 35a7d7a..c11a5c8 100644 --- a/.builds/archlinux.yaml +++ b/.builds/archlinux.yaml @@ -27,8 +27,9 @@ environment: tasks: - setup: | cd vdirsyncer + python setup.py build + sudo pip install --no-index . sudo systemctl start docker - sudo python setup.py install DAV_SERVER="radicale xandikos" make -e install-servers - test: | cd vdirsyncer