vdirsyncer/tests/storage/servers/xandikos/install.sh
Hugo Osvaldo Barrera 9505430b83 Pin an older version of Xandikos
This is the one used back when master was last green, so let's start
with this one and gradually move up.
2020-06-08 16:33:17 +02:00

14 lines
373 B
Bash

#!/bin/sh
set -e
pip install wsgi_intercept
if [ "$REQUIREMENTS" = "release" ] || [ "$REQUIREMENTS" = "minimal" ]; then
# XXX: This is the last version to support Python 3.5
pip install -U "xandikos==0.0.11"
elif [ "$REQUIREMENTS" = "devel" ]; then
pip install -U git+https://github.com/jelmer/xandikos
else
echo "Invalid REQUIREMENTS value"
false
fi