Get ready for release 3.7.3

This commit is contained in:
rocky
2020-07-25 13:12:42 -04:00
parent 024a81c053
commit 844144f90a
4 changed files with 16 additions and 4 deletions

12
NEWS.md
View File

@@ -1,3 +1,15 @@
3.7.3: 2020-7-25
================
Mostly small miscellaneous bug fixes
* `__doc__ = DocDescr()` from `test_descr.py` was getting confused as a docstring.
* detect 2.7 exchandler range better
* Add for .. else reduction checks on 2.6 and before
* Add reduce check for 2.7 augmented assign
* Add VERSION in a pydoc-friendly way
3.7.2: 2020-6-27 3.7.2: 2020-6-27
================ ================

View File

@@ -39,7 +39,7 @@
# Make sure pyenv is running and check newer versions # Make sure pyenv is running and check newer versions
$ pyenv local && source admin-tools/check-newer-versions.sh $ admin-tools/check-newer-versions.sh
# Switch to python-2.4, sync that up and build that first since it creates a tarball which we don't want. # Switch to python-2.4, sync that up and build that first since it creates a tarball which we don't want.
@@ -62,7 +62,7 @@
# Check package on github # Check package on github
$ mkdir /tmp/gittest; pushd /tmp/gittest $ [[ ! -d /tmp/gittest ]] && mkdir /tmp/gittest; pushd /tmp/gittest
$ pyenv local 3.7.5 $ pyenv local 3.7.5
$ pip install -e git://github.com/rocky/python-uncompyle6.git#egg=uncompyle6 $ pip install -e git://github.com/rocky/python-uncompyle6.git#egg=uncompyle6
$ uncompyle6 --help $ uncompyle6 --help

View File

@@ -5,4 +5,4 @@ if [[ $0 == ${BASH_SOURCE[0]} ]] ; then
echo "This script should be *sourced* rather than run directly through bash" echo "This script should be *sourced* rather than run directly through bash"
exit 1 exit 1
fi fi
export PYVERSIONS='3.5.9 3.6.10 2.6.9 3.3.7 2.7.18 3.2.6 3.1.5 3.4.10 3.7.7 3.8.3' export PYVERSIONS='3.5.9 3.6.10 2.6.9 3.3.7 2.7.18 3.2.6 3.1.5 3.4.10 3.7.7 3.8.4'

View File

@@ -12,4 +12,4 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
# This file is suitable for sourcing inside POSIX shell as # This file is suitable for sourcing inside POSIX shell as
# well as importing into Python # well as importing into Python
VERSION="3.7.2" # noqa VERSION="3.7.3" # noqa