Administrivia
Some checks failed
uncompyle6 (osx) / build (macOS, 3.8) (push) Has been cancelled
uncompyle6 (ubuntu) / build (3.8) (push) Has been cancelled
uncompyle6 (windows) / build (windows, 3.8) (push) Has been cancelled

Folloow branching of other projects in this ilk
This commit is contained in:
rocky 2024-10-09 03:55:30 -04:00
parent f0e1a7beba
commit 193c262ffb
7 changed files with 34 additions and 6 deletions

View File

@ -2,6 +2,6 @@
uncompyle6_merge_33_owd=$(pwd)
cd $(dirname ${BASH_SOURCE[0]})
if . ./setup-python-3.3.sh; then
git merge master
git merge python-3.6-to-3.10
fi
cd $uncompyle6_merge_33_owd

7
admin-tools/merge-for-3.6.sh Executable file
View File

@ -0,0 +1,7 @@
#/bin/bash
uncompyle6_merge_33_owd=$(pwd)
cd $(dirname ${BASH_SOURCE[0]})
if . ./setup-python-3.3.sh; then
git merge master
fi
cd $uncompyle6_merge_33_owd

View File

@ -6,7 +6,7 @@ if [[ $0 == $bs ]] ; then
exit 1
fi
PYTHON_VERSION=3.8
PYTHON_VERSION=3.12
uncompyle6_owd=$(pwd)
mydir=$(dirname $bs)
@ -16,5 +16,5 @@ cd $mydir
cd $fulldir/..
(cd $fulldir/.. && \
setup_version python-spark master && \
setup_version python-xdis python-3.6 )
setup_version python-xdis master )
checkout_finish master

View File

@ -7,7 +7,7 @@ if [[ $0 == $bs ]] ; then
exit 1
fi
PYTHON_VERSION=2.4.6
PYTHON_VERSION=2.4
uncompyle6_owd=$(pwd)
mydir=$(dirname $bs)

View File

@ -6,7 +6,7 @@ if [[ $0 == $bs ]] ; then
exit 1
fi
PYTHON_VERSION=3.0.1
PYTHON_VERSION=3.0
uncompyle6_owd=$(pwd)
mydir=$(dirname $bs)

View File

@ -6,7 +6,7 @@ if [[ $0 == $bs ]] ; then
exit 1
fi
PYTHON_VERSION=3.3.7
PYTHON_VERSION=3.3
uncompyle6_owd=$(pwd)
mydir=$(dirname $bs)

21
admin-tools/setup-python-3.6.sh Executable file
View File

@ -0,0 +1,21 @@
#!/bin/bash
# Check out python-3.6-to-3.10 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.6
uncompyle6_owd=$(pwd)
mydir=$(dirname $bs)
cd $mydir
fulldir=$(readlink -f $mydir)
. ./checkout_common.sh
cd $fulldir/..
(cd $fulldir/.. && \
setup_version python-spark python-3.6 && \
setup_version python-xdis python-3.6 )
checkout_finish python-3.6-to-3.10