Files
python-uncompyle6/admin-tools/setup-python-3.0.sh
2024-07-22 18:03:17 -04:00

22 lines
498 B
Bash

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