1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
=============================================================
PyPy v7.3.7: bug-fix release of 3.7, 3.8, released 2021-10-25
=============================================================
We are releasing a PyPy 7.3.7 to fix the recent 7.3.6 release's binary
incompatibility with the previous 7.3.x releases. We mistakenly added fields
to ``PyFrameObject`` and ``PyDateTime_CAPI`` that broke the promise of binary
compatibility, which means that c-extension wheels compiled for 7.3.5 will not
work with 7.3.6 and via-versa. Please do not use 7.3.6.
We have added a cursory test for binary API breakage to the
https://github.com/pypy/binary-testing repo which hopefully will prevent such
mistakes in the future.
Additionally, a few smaller bugs were fixed:
- Use ``uint`` for the ``request`` argument of ``fcntl.ioctl`` (issue 3568_)
- Fix incorrect tracing of `while True`` body in 3.8 (issue 3577_)
- Properly close resources when using a ``concurrent.futures.ProcessPool``
(issue 3317_)
- Fix the value of ``LIBDIR`` in ``_sysconfigdata`` in 3.8 (issue 3582_)
You can find links to download the v7.3.7 releases here:
https://pypy.org/download.html
We would like to thank our donors for the continued support of the PyPy
project. If PyPy is not quite good enough for your needs, we are available for
direct consulting work. If PyPy is helping you out, we would love to hear about
it and encourage submissions to our `blog site`_ via a pull request
to https://github.com/pypy/pypy.org
We would also like to thank our contributors and encourage new people to join
the project. PyPy has many layers and we need help with all of them: `PyPy`_
and `RPython`_ documentation improvements, tweaking popular modules to run
on PyPy, or general `help`_ with making RPython's JIT even better.
If you are a python library maintainer and use C-extensions, please consider
making a CFFI_ / cppyy_ version of your library that would be performant on PyPy.
In any case both `cibuildwheel`_ and the `multibuild system`_ support
building wheels for PyPy.
.. _`PyPy`: index.html
.. _`RPython`: https://rpython.readthedocs.org
.. _`help`: project-ideas.html
.. _CFFI: https://cffi.readthedocs.io
.. _cppyy: https://cppyy.readthedocs.io
.. _`multibuild system`: https://github.com/matthew-brett/multibuild
.. _`cibuildwheel`: https://github.com/joerick/cibuildwheel
.. _`blog site`: https://pypy.org/blog
What is PyPy?
=============
PyPy is a Python interpreter, a drop-in replacement for CPython 2.7, 3.7, and
3.8. It's fast (`PyPy and CPython 3.7.4`_ performance
comparison) due to its integrated tracing JIT compiler.
We also welcome developers of other `dynamic languages`_ to see what RPython
can do for them.
This PyPy release supports:
* **x86** machines on most common operating systems
(Linux 32/64 bits, Mac OS X 64 bits, Windows 64 bits, OpenBSD, FreeBSD)
* 64-bit **ARM** machines running Linux.
* **s390x** running Linux
PyPy does support ARM 32 bit and PPC64 processors, but does not release binaries.
.. _`PyPy and CPython 3.7.4`: https://speed.pypy.org
.. _`dynamic languages`: https://rpython.readthedocs.io/en/latest/examples.html
.. _3568: https://foss.heptapod.net/pypy/pypy/-/issues/3568
.. _3577: https://foss.heptapod.net/pypy/pypy/-/issues/3577
.. _3317: https://foss.heptapod.net/pypy/pypy/-/issues/3317
.. _3582: https://foss.heptapod.net/pypy/pypy/-/issues/3582
|