File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+
1133.7.2: 2020-6-27
214================
315
Original file line number Diff line number Diff line change 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
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
Original file line number Diff line number Diff 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
77fi
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 '
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments