]> arthur.barton.de Git - bup.git/blobdiff - dev/prep-for-freebsd-build
Drop support for python 2
[bup.git] / dev / prep-for-freebsd-build
index c95e77d21faa9e96bd137fbbf9cedd3963cbca5c..556b72deeb4f31a09eafe240b203cb3cc280a60c 100755 (executable)
@@ -4,10 +4,10 @@ set -exu
 
 usage()
 {
-    echo "Usage: prep-for-freebsd-build [python2|python3]"
+    echo "Usage: prep-for-freebsd-build [python3]"
 }
 
-pyver="${1:-python2}"
+pyver="${1:-python3}"
 
 # Install build deps
 export ASSUME_ALWAYS_YES=yes
@@ -20,11 +20,6 @@ pkgs='gmake git bash rsync curl par2cmdline readline duplicity'
 pkgs="$pkgs rsnapshot"
 
 case "$pyver" in
-    python2)
-        pkgs="$pkgs python2 py27-tornado py27-pip"
-        pkg install $pkgs
-        pip-2.7 install --user pytest pytest-xdist
-        ;;
     python3)
         pkgs="$pkgs python38 py38-tornado py38-pytest py38-pytest-xdist"
         pkg install $pkgs