Skip to content

Commit 16914fe

Browse files
committed
Get ready for release 3.9.0
1 parent 1ffc58a commit 16914fe

File tree

5 files changed

+53
-4
lines changed

5 files changed

+53
-4
lines changed

NEWS.md

+23-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,26 @@
1-
3.8.0: 2020-10-29
1+
3.9.0: 2022-12-22
2+
=================
3+
4+
* deparse generator expressions for Python 3.0 .. 3.2
5+
* Python 3.0 list comprehension.
6+
* Fix Issues #310, #344, #377, #391, #409, #414
7+
* Limited support for 3.8+ f-string "=" specifier
8+
* Correct 2.5-7 relative import formatting
9+
* Miscellaneous bug fixing
10+
* remove \n in lambda
11+
* Python 2.6 gramar cleanup
12+
* Correct some Python 2.6 chain compare decompilation
13+
* Ensure no parenthesis subscript slices
14+
* Correct 2.x formatting "slice2" nonterminal
15+
* Correct 3.7 imports
16+
* Improve "async for" parsing
17+
* Handle BUILD_MAP opcode
18+
* match Python AT better
19+
* Correct 3.7 positional args
20+
* PyPy 3.7 and PyPy 3.8 support
21+
* Miscellaneous linting, isorting, blacking
22+
23+
3.8.0: 2021-10-29
224
=================
325

426
* Better handling of invalid bytecode magic

admin-tools/check-3.3-3.5-versions.sh

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/bin/bash
2+
function finish {
3+
cd $owd
4+
}
5+
owd=$(pwd)
6+
trap finish EXIT
7+
8+
cd $(dirname ${BASH_SOURCE[0]})
9+
if ! source ./pyenv-3.3-3.5-versions ; then
10+
exit $?
11+
fi
12+
if ! source ./setup-python-3.3.sh ; then
13+
exit $?
14+
fi
15+
16+
cd ..
17+
for version in $PYVERSIONS; do
18+
echo --- $version ---
19+
if ! pyenv local $version ; then
20+
exit $?
21+
fi
22+
make clean && python setup.py develop
23+
if ! make check ; then
24+
exit $?
25+
fi
26+
echo === $version ===
27+
done

admin-tools/pyenv-newest-versions

+1-1
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.6.15 pypy3.6-7.3.1 3.7.16 pypy-3.7-3.9 pypy3.8-7.3.10 pyston-2.3.5 3.8.14'
8+
export PYVERSIONS='3.6.15 pypy3.6-7.3.1 3.7.16 pypy3.7-7.3.9 pypy3.8-7.3.10 pyston-2.3.5 3.8.16'

pytest/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ PYTHON ?= python
77
test check pytest:
88
@PYTHON_VERSION=`$(PYTHON) -V 2>&1 | cut -d ' ' -f 2 | cut -d'.' -f1,2`; \
99
if [[ $$PYTHON_VERSION > 3.2 ]] || [[ $$PYTHON_VERSION == 2.7 ]] || [[ $$PYTHON_VERSION == 2.6 ]]; then \
10-
py.test; \
10+
$(PYTHON) -m pytest .; \
1111
fi

uncompyle6/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
# This file is suitable for sourcing inside POSIX shell as
1515
# well as importing into Python
1616
# fmt: off
17-
__version__="3.9.0a1" # noqa
17+
__version__="3.9.0" # noqa

0 commit comments

Comments
 (0)