Skip to content

Commit

Permalink
Get ready for release 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Oct 16, 2021
1 parent a258680 commit 4a88c42
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
6.0.0 2021-10-15
=================

Reworked for Python 3.10.

We had been internally using floating point numbers for version testing.
Clearl this doesn't work to distinguish 3.1 from 3.10.
(This was a flaw known about for a while and we'd been avoiding).

* Add 3.10 opcodes.
* Add 3.9 and 3.10 testing.
* Some tolerance for running from 3.11
* Update magic numbers
* Expanding testing to include pyston and PyPy 3.7
* Improve distribution packaging, e.g. Python 3 wheels should no longer be attmpted on Python 2.x

5.0.13 2021-09-24
=================

Expand Down
2 changes: 1 addition & 1 deletion __pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
modname = "xdis"
packages = ["xdis"]
py_modules = None
python_requires='>=3.6,<3.11',
python_requires='>=3.6,<3.11'
# setup_requires = ['pytest-runner']
scripts = ["bin/pydisasm.py"]
short_desc = "Python cross-version byte-code disassembler and marshal routines"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
name=modname,
packages=find_packages(),
py_modules=py_modules,
python_require=python_requires,
python_requires=python_requires,
# setup_requires = setup_requires,
tests_require=tests_require,
url=web,
Expand Down
2 changes: 1 addition & 1 deletion xdis/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# well as importing into Python. That's why there is no
# space around "=" below.
# fmt: off
__version__="6.0.0.dev0" # noqa
__version__="6.0.0" # noqa

0 comments on commit 4a88c42

Please sign in to comment.