-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
rocky
committed
Jul 22, 2024
1 parent
244ca51
commit 361e142
Showing
11 changed files
with
94 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#/bin/bash | ||
cd $(dirname ${BASH_SOURCE[0]}) | ||
if . ./setup-python-2.7.sh; then | ||
git merge python-3.2-to-3.5 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#/bin/bash | ||
cd $(dirname ${BASH_SOURCE[0]}) | ||
if . ./setup-python-3.2.sh; then | ||
git merge master | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/bash | ||
PYTHON_VERSION=3.7.7 | ||
PYTHON_VERSION=3.8 | ||
|
||
owd=$(pwd) | ||
bs=${BASH_SOURCE[0]} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
PYTHON_VERSION=2.7 | ||
|
||
export PATH=$HOME/.pyenv/bin/pyenv:$PATH | ||
trepan_xpy_owd=$(pwd) | ||
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) | ||
fulldir=$(readlink -f $mydir) | ||
cd $fulldir/.. | ||
(cd ../python3-trepan && ./admin-tools/setup-python-2.4.sh) && \ | ||
(cd ../x-python && ./admin-tools/setup-python-2.7.sh) | ||
git checkout python-2.7 && pyenv local $PYTHON_VERSION && git pull | ||
cd $trepan_xpy_owd | ||
rm -v */.python-version || true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,13 @@ | ||
#!/bin/bash | ||
PYTHON_VERSION=3.2.6 | ||
PYTHON_VERSION=3.2 | ||
|
||
owd=$(pwd) | ||
trepan_xpy_owd=$(pwd) | ||
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) | ||
fulldir=$(readlink -f $mydir) | ||
cd $fulldir/.. | ||
(cd ../python-spark && git checkout master && pyenv local $PYTHON_VERSION) && git pull && \ | ||
(cd ../python-xdis && git checkout master && pyenv local $PYTHON_VERSION) && \ | ||
(cd ../python3-trepan && git checkout master && pyenv local $PYTHON_VERSION) && git pull && \ | ||
git checkout python-3.2 && pyenv local $PYTHON_VERSION && git pull | ||
cd $owd | ||
(cd ../python3-trepan && ./admin-tools/setup-python-3.2.sh) && \ | ||
(cd ../x-python && ./admin-tools/setup-python-3.1.sh) | ||
git checkout python-3.2-to-3.5 && pyenv local $PYTHON_VERSION && git pull | ||
cd $trepan_xpy_owd | ||
rm -v */.python-version || true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
# debugger version number. | ||
|
||
# fmt: off | ||
__version__="1.1.1.dev0" # noqa | ||
__version__="1.1.1" # noqa |