python-uncompyle6/admin-tools/setup-python-3.3.sh
rocky 710167b806
Some checks failed
uncompyle6 (ubuntu) / build (3.8) (push) Failing after 0s
uncompyle6 (osx) / build (macOS, 3.8) (push) Has been cancelled
uncompyle6 (windows) / build (windows, 3.8) (push) Has been cancelled
Adminsitrivia
2024-09-21 07:29:12 -04:00

22 lines
508 B
Bash
Executable File

#!/bin/bash
# Check out python-3.3-to-3.5 and dependent development branches.
bs=${BASH_SOURCE[0]}
if [[ $0 == $bs ]] ; then
echo "This script should be *sourced* rather than run directly through bash"
exit 1
fi
PYTHON_VERSION=3.3.7
uncompyle6_owd=$(pwd)
mydir=$(dirname $bs)
cd $mydir
fulldir=$(readlink -f $mydir)
. ./checkout_common.sh
cd $fulldir/..
(cd $fulldir/.. && \
setup_version python-spark master && \
setup_version python-xdis python-3.3 )
checkout_finish python-3.3-to-3.5