Skip to content

Commit 3b6ddb7

Browse files
committed
Get ready for release 3.9.1
1 parent 667807e commit 3b6ddb7

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

NEWS.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
3.9.1
2+
=====
3+
4+
Lots of changes major changes. track xdis API has changes.
5+
6+
Separate Phases more clearly:
7+
* disassembly
8+
* tokenization
9+
* parsing
10+
* abstracting to AST (more is done in newer projects)
11+
* printing
12+
13+
Although we do not decompile bytecode greater than 3.8, code supports running from up to 3.12.
14+
15+
Many bugs fixed.
16+
17+
A lot of Linting and coding style modernization.
18+
19+
Work done in preparation for Blackhat Asia 2024
20+
121
3.9.0
222
=====
323

admin-tools/make-dist.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ cd ..
1818
source $PACKAGE/version.py
1919
echo $VERSION
2020

21+
PYVERSIONS=3.11
2122
for pyversion in $PYVERSIONS; do
2223
if ! pyenv local $pyversion ; then
2324
exit $?

setup.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,12 @@
1212
print(mess)
1313
raise Exception(mess)
1414

15-
setup(packages=["decompyle3"])
15+
setup(
16+
packages=[
17+
"decompyle3",
18+
"decompyle3.bin",
19+
"decompyle3.parsers",
20+
"decompyle3.scanners",
21+
"decompyle3.semantics",
22+
]
23+
)

0 commit comments

Comments
 (0)