mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2024-11-26 22:50:40 +00:00
16 lines
334 B
Bash
Executable File
16 lines
334 B
Bash
Executable File
#!/bin/bash
|
|
PYTHON_VERSION=3.3.7
|
|
pyenv local $PYTHON_VERSION
|
|
|
|
owd=$(pwd)
|
|
bs=${BASH_SOURCE[0]}
|
|
|
|
mydir=$(dirname $bs)
|
|
fulldir=$(readlink -f $mydir)
|
|
cd $fulldir/..
|
|
(cd ../python-xdis && ./admin-tools/setup-python-3.3.sh)
|
|
cd $owd
|
|
rm -v */.python-version || true
|
|
|
|
git checkout python-3.3-to-3.5 && git pull && pyenv local $PYTHON_VERSION
|