
I have released a bug-fix v7.3.11 of PyPy with python2.7, 3,8, 3..9. The complete release note is at https://doc.pypy.org/en/latest/release-v7.3.11.html. Looking back at all the blog posts with the release tag https://www.pypy.org/categories/release.html, it seems there were 40 releases since my first 2.4.0 in 2014. Plans for 2023 include python3.10 and maybe python 3.11, updating HPy, and more performance enhancements. I also want to find a way to give more information about memory allocations to help people understand if there are leaks. Matti

On Fri, 30 Dec 2022 at 07:08, Matti Picus <matti.picus@gmail.com> wrote:
I have released a bug-fix v7.3.11 of PyPy with python2.7, 3,8, 3..9.
Does something need to be done somewhere to make it so that this version will appear in GitHub Actions when using actions/setup-python? Looking at the setup-python code it seems to look for versions in this file: https://downloads.python.org/pypy/versions.json I guess somehow that file needs to be updated to list 7.3.11 but I have no idea what the source of that file is. -- Oscar

They rebuild their images approximately weekly -- if you request pypy3.9-7.3.11 you'll get it immediately, but if you just request pypy3.9 you'll get it once the images rebuild. Alex On Mon, Jan 2, 2023 at 3:29 PM Oscar Benjamin <oscar.j.benjamin@gmail.com> wrote:
On Fri, 30 Dec 2022 at 07:08, Matti Picus <matti.picus@gmail.com> wrote:
I have released a bug-fix v7.3.11 of PyPy with python2.7, 3,8, 3..9.
Does something need to be done somewhere to make it so that this version will appear in GitHub Actions when using actions/setup-python?
Looking at the setup-python code it seems to look for versions in this file: https://downloads.python.org/pypy/versions.json I guess somehow that file needs to be updated to list 7.3.11 but I have no idea what the source of that file is.
-- Oscar _______________________________________________ pypy-dev mailing list -- pypy-dev@python.org To unsubscribe send an email to pypy-dev-leave@python.org https://mail.python.org/mailman3/lists/pypy-dev.python.org/ Member address: alex.gaynor@gmail.com
-- All that is necessary for evil to succeed is for good people to do nothing.

On Mon, 2 Jan 2023 at 20:46, Alex Gaynor <alex.gaynor@gmail.com> wrote:
On Mon, Jan 2, 2023 at 3:29 PM Oscar Benjamin <oscar.j.benjamin@gmail.com> wrote:
On Fri, 30 Dec 2022 at 07:08, Matti Picus <matti.picus@gmail.com> wrote:
I have released a bug-fix v7.3.11 of PyPy with python2.7, 3,8, 3..9.
Does something need to be done somewhere to make it so that this version will appear in GitHub Actions when using actions/setup-python?
Looking at the setup-python code it seems to look for versions in this file: https://downloads.python.org/pypy/versions.json I guess somehow that file needs to be updated to list 7.3.11 but I have no idea what the source of that file is.
They rebuild their images approximately weekly -- if you request pypy3.9-7.3.11 you'll get it immediately, but if you just request pypy3.9 you'll get it once the images rebuild.
Thanks. I just confirmed that specifying the version explicitly works. From the code in setup-actions it looks like images for pypy are handled differently from cpython for some reason because for cpython all the versions are in this repo: https://github.com/actions/python-versions For pypy everything seems to come from the file I linked above at python.org. -- Oscar
participants (3)
-
Alex Gaynor
-
Matti Picus
-
Oscar Benjamin