Skip to content

Commit

Permalink
Get ready for release 3.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Nov 19, 2021
1 parent 39f4dfb commit 6a91687
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
11 changes: 11 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
3.8.0
=====

* Sync version number with corresponding uncompile6 version. The big change in 3.7.7 was using xdis >= 6.x
* use `expr_stmt` instead of `call_stmt` when that is what is meant
* remove float version tests
* better, but not perfect, `list .. if` comprehensions
* PyPy 3.8 testing support
* Start PyPy 3.7 and PyPy 3.8 decompilation support


3.7.7
=====

Expand Down
8 changes: 2 additions & 6 deletions admin-tools/make-dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,8 @@ for pyversion in $PYVERSIONS; do
fi
# pip bdist_egg create too-general wheels. So
# we narrow that by moving the generated wheel.

# Pick out first two number of version, e.g. 3.5.1 -> 35
first_two=$(echo $pyversion | cut -d'.' -f 1-2 | sed -e 's/\.//')
rm -fr build
python setup.py bdist_egg bdist_wheel
python setup.py bdist_wheel --universal
python setup.py bdist_egg
done

python ./setup.py sdist
python ./setup.py bdist_wheel sdist
2 changes: 1 addition & 1 deletion decompyle3/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# This file is suitable for sourcing inside bash as
# well as importing into Python
# fmt: off
__version__="3.8.1.dev0" # noqa
__version__="3.8.0" # noqa
3 changes: 0 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ doc_files = README
# doc/
# examples/

[bdist_wheel]
universal=1

[metadata]
description_file = README.rst

Expand Down

0 comments on commit 6a91687

Please sign in to comment.