File tree Expand file tree Collapse file tree 4 files changed +14
-10
lines changed
Expand file tree Collapse file tree 4 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 1+ 3.8.0
2+ =====
3+
4+ * Sync version number with corresponding uncompile6 version. The big change in 3.7.7 was using xdis >= 6.x
5+ * use ` expr_stmt ` instead of ` call_stmt ` when that is what is meant
6+ * remove float version tests
7+ * better, but not perfect, ` list .. if ` comprehensions
8+ * PyPy 3.8 testing support
9+ * Start PyPy 3.7 and PyPy 3.8 decompilation support
10+
11+
1123.7.7
213=====
314
Original file line number Diff line number Diff line change @@ -24,12 +24,8 @@ for pyversion in $PYVERSIONS; do
2424 fi
2525 # pip bdist_egg create too-general wheels. So
2626 # we narrow that by moving the generated wheel.
27-
28- # Pick out first two number of version, e.g. 3.5.1 -> 35
29- first_two=$( echo $pyversion | cut -d' .' -f 1-2 | sed -e ' s/\.//' )
3027 rm -fr build
31- python setup.py bdist_egg bdist_wheel
32- python setup.py bdist_wheel --universal
28+ python setup.py bdist_egg
3329done
3430
35- python ./setup.py sdist
31+ python ./setup.py bdist_wheel sdist
Original file line number Diff line number Diff line change 1313# This file is suitable for sourcing inside bash as
1414# well as importing into Python
1515# fmt: off
16- __version__ = "3.8.1.dev0 " # noqa
16+ __version__ = "3.8.0 " # noqa
Original file line number Diff line number Diff line change @@ -7,9 +7,6 @@ doc_files = README
77# doc/
88# examples/
99
10- [bdist_wheel]
11- universal =1
12-
1310[metadata]
1411description_file = README.rst
1512
You can’t perform that action at this time.
0 commit comments