From aee100212391f5d86b99ba996e164291aea6c491 Mon Sep 17 00:00:00 2001 From: rocky Date: Sat, 10 Jul 2021 20:26:32 -0400 Subject: [PATCH] Get ready for release 3.7.5 --- NEWS.md | 6 ++++++ admin-tools/pyenv-versions | 2 +- admin-tools/setup-python-2.4.sh | 16 ---------------- decompyle3/version.py | 2 +- 4 files changed, 8 insertions(+), 18 deletions(-) delete mode 100755 admin-tools/setup-python-2.4.sh diff --git a/NEWS.md b/NEWS.md index 043a8b85..cc20e028 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,9 @@ +3.7.5 +===== + +Fix various bugs in fragment semantic actions. This mostly got stale with disuse, and make usable again now that it is used in trepan3k. + + 3.7.4 ===== diff --git a/admin-tools/pyenv-versions b/admin-tools/pyenv-versions index dc376826..49367772 100644 --- a/admin-tools/pyenv-versions +++ b/admin-tools/pyenv-versions @@ -5,4 +5,4 @@ if [[ $0 == ${BASH_SOURCE[0]} ]] ; then echo "This script should be *sourced* rather than run directly through bash" exit 1 fi -export PYVERSIONS='3.7.10 3.8.10' +export PYVERSIONS='3.7.11 3.8.11' diff --git a/admin-tools/setup-python-2.4.sh b/admin-tools/setup-python-2.4.sh deleted file mode 100755 index 5226f9d2..00000000 --- a/admin-tools/setup-python-2.4.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash -PYTHON_VERSION=2.4.6 - -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 python-2.4 && pyenv local $PYTHON_VERSION) && git pull && \ - (cd ../python-xdis && git checkout python-2.4 && pyenv local $PYTHON_VERSION) && git pull && \ - git checkout python-2.4 && pyenv local $PYTHON_VERSION && git pull -cd $owd diff --git a/decompyle3/version.py b/decompyle3/version.py index af22c7ca..3cdc4228 100644 --- a/decompyle3/version.py +++ b/decompyle3/version.py @@ -13,4 +13,4 @@ # This file is suitable for sourcing inside bash as # well as importing into Python # fmt: off -__version__="3.7.5.dev0" # noqa +__version__="3.7.5" # noqa