Skip to content

Commit 6cb6e45

Browse files
committed
Get ready for release 3.7.3
1 parent 024a81c commit 6cb6e45

4 files changed

Lines changed: 20 additions & 8 deletions

File tree

NEWS.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
3.7.3: 2020-7-25
2+
================
3+
4+
Mostly small miscellaneous bug fixes
5+
6+
* `__doc__ = DocDescr()` from `test_descr.py` was getting confused as a docstring.
7+
* detect 2.7 exchandler range better
8+
* Add for .. else reduction checks on 2.6 and before
9+
* Add reduce check for 2.7 augmented assign
10+
* Add VERSION in a pydoc-friendly way
11+
12+
113
3.7.2: 2020-6-27
214
================
315

admin-tools/how-to-make-a-release.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
# Make sure pyenv is running and check newer versions
4141

42-
$ pyenv local && source admin-tools/check-newer-versions.sh
42+
$ admin-tools/check-newer-versions.sh
4343

4444
# Switch to python-2.4, sync that up and build that first since it creates a tarball which we don't want.
4545

@@ -50,20 +50,20 @@
5050

5151
# Check against older versions
5252

53-
$ source admin-tools/check-older-versions.sh
53+
$ admin-tools/check-older-versions.sh
5454

5555
# Make packages and tag
5656

5757
$ . ./admin-tools/make-dist-older.sh
58-
$ pyenv local 3.8.3
58+
$ pyenv local 3.8.4
5959
$ twine check dist/uncompyle6-$VERSION*
60-
$ . ./admin-tools/make-dist-newer.sh
60+
$ ./admin-tools/make-dist-newer.sh
6161
$ twine check dist/uncompyle6-$VERSION*
6262

6363
# Check package on github
6464

65-
$ mkdir /tmp/gittest; pushd /tmp/gittest
66-
$ pyenv local 3.7.5
65+
$ [[ ! -d /tmp/gittest ]] && mkdir /tmp/gittest; pushd /tmp/gittest
66+
$ pyenv local 3.8.3
6767
$ pip install -e git://github.com/rocky/python-uncompyle6.git#egg=uncompyle6
6868
$ uncompyle6 --help
6969
$ pip uninstall uncompyle6

admin-tools/pyenv-newer-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ if [[ $0 == ${BASH_SOURCE[0]} ]] ; then
55
echo "This script should be *sourced* rather than run directly through bash"
66
exit 1
77
fi
8-
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'
8+
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'

uncompyle6/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1313
# This file is suitable for sourcing inside POSIX shell as
1414
# well as importing into Python
15-
VERSION="3.7.2" # noqa
15+
VERSION="3.7.3" # noqa

0 commit comments

Comments
 (0)