Skip to content

Commit 6a91687

Browse files
committed
Get ready for release 3.8.0
1 parent 39f4dfb commit 6a91687

File tree

4 files changed

+14
-10
lines changed

4 files changed

+14
-10
lines changed

NEWS.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
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+
112
3.7.7
213
=====
314

admin-tools/make-dist.sh

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff 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
3329
done
3430

35-
python ./setup.py sdist
31+
python ./setup.py bdist_wheel sdist

decompyle3/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
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

setup.cfg

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ doc_files = README
77
# doc/
88
# examples/
99

10-
[bdist_wheel]
11-
universal=1
12-
1310
[metadata]
1411
description_file = README.rst
1512

0 commit comments

Comments
 (0)