From steven.mathews9000 at gmail.com Thu Apr 1 15:32:52 2021 From: steven.mathews9000 at gmail.com (Steven Mathews) Date: Thu, 1 Apr 2021 15:32:52 -0400 Subject: [pypy-dev] Is pypy still locked to 4GB RAM ? (64 bit Windows) Message-ID: Is pypy still locked to 4GB RAM? Or fully 64bit Windows now? The docs say 'finally done' but doesn't seem to specify if it means compatibility-only or can handle over 4GB now. -------------- next part -------------- An HTML attachment was scrubbed... URL: From matti.picus at gmail.com Thu Apr 1 16:02:50 2021 From: matti.picus at gmail.com (Matti Picus) Date: Thu, 1 Apr 2021 23:02:50 +0300 Subject: [pypy-dev] Is pypy still locked to 4GB RAM ? (64 bit Windows) In-Reply-To: References: Message-ID: <8d086482-3899-9ac2-2100-14460f09320a@gmail.com> There are two versions: a 32-bit one that is limited to 4GB, and a 64-bit one that is not. We will be releasing the 64-bit one soon, the release candidate is already available on https://downloads.python.org/pypy/. You want the one that has win64 in the name. Please try it out and tell us how it worked for you. Note if you want to use any c-extension packages like NumPy and lxml you will have to compile them yourself. Matti On 1/4/21 10:32 pm, Steven Mathews wrote: > Is pypy still locked to 4GB RAM? Or fully 64bit Windows now? The docs > say 'finally done' but doesn't seem to specify if it means > compatibility-only or can handle over 4GB now. > > From matti.picus at gmail.com Sun Apr 4 15:23:57 2021 From: matti.picus at gmail.com (Matti Picus) Date: Sun, 4 Apr 2021 22:23:57 +0300 Subject: [pypy-dev] PyPy7.3.4rc2 tarballs are available Message-ID: The second release candidate for PyPy7.3.4 is up at https://downloads.python.org/pypy/. People using cibuildwheel or github actions to test PyPy should be able to use this in their test runs once the https://downloads.python.org/pypy/versions.json file updates (it may take a few hours to percolate out) The sha256 checksums can be found in the PR to the pypy.org web site at https://github.com/pypy/pypy.org/pull/13/files#diff-622ff636d3511de2e408d8b4134b4b825743385cb6c8d9bbadf6dc5b0c887f0eR491 or via the preview at https://deploy-preview-13--keen-mestorf-442210.netlify.app/download_advanced.html#checksums The draft release note is up at https://doc.pypy.org/en/latest/release-v7.3.4.html Highltights: - we now have a win64 build (and are dropping the win32 one) - there are a number of JIT performance enhancements - overall better compatibility with CPython. - ARM64 for linux is now built on top of debian9 (manylinux2014) and uses "portable" packaging Please try it out and report issues on IRC or on the issue tracker. Comments to improve the release note are welcome too. Matti From matti.picus at gmail.com Thu Apr 8 06:50:14 2021 From: matti.picus at gmail.com (Matti Picus) Date: Thu, 8 Apr 2021 13:50:14 +0300 Subject: [pypy-dev] PyPy v7.3.4 is out Message-ID: PyPy v7.3.4 is out. The release note is here https://doc.pypy.org/en/latest/release-v7.3.4.html The blog post should appear soon. The downloads are available on https://pypy.org/download.html or directly from https://downloads.python.org/pypy/ Now on to the next release. Here are a few things it would be nice to push forward, there is work progressing on some of these and contributions are welcome: - Python3.8 - Close the gap on known slowdowns: ?? - A faster _pickle module implemented in RPython ?? - A faster json writer ?? - Better handling of too-many-traces in the JIT (for both too large loops and too much specialization) - Making HPy viable for some small c-extensions - Fix these packages so they work with PyPy: hdf5 [0], grpcio [1] Matti [0] https://github.com/h5py/h5py/issues/1591 [1] https://github.com/grpc/grpc/issues/4221 From liske at ibh.de Mon Apr 19 13:12:25 2021 From: liske at ibh.de (Thomas Liske) Date: Mon, 19 Apr 2021 19:12:25 +0200 Subject: [pypy-dev] pypy tests on aarch64 musl libc Message-ID: <6d90b5ce55e8d3838ebc53bb533dc754@ibh.de> Hi, I'm trying to contribute the packaging of pypy to Alpine Linux. I got the bootstrapping for x86 x86_64 and s390x working. On aarch64 two of the pypy tests are failing[1]: - TestLogParser.test - TestMicroNumPy.test_reduce_logical_and [1] https://gitlab.alpinelinux.org/liske/aports/-/jobs/367904#L4261 Are that known issues, is there anything I could do to help to fix them? I don't know if my packaging attempt will be accepted for Alpine. Running all tests without failures should not make it worse ;-) Regards, Thomas -- support at ibh.de Tel. +49 351 477 77 30 www.ibh.de Fax +49 351 477 77 39 ----------------------------------------------------------------------- Dipl.-Ing. Thomas Liske Teamleiter DataCenter Services IBH IT-Service GmbH Amtsgericht Dresden Heilbronner Str. 20 HRB 13626 01189 Dresden GF: Sandra Zander Germany VAT DE182302907 ----------------------------------------------------------------------- Ihr Partner f?r: LAN, WAN IP-Quality, Security, VoIP, SAN, Backup, USV ----------------------------------------------------------------------- professioneller IT-Service - kompetent und zuverl?ssig ----------------------------------------------------------------------- From mgorny at gentoo.org Mon Apr 19 13:33:53 2021 From: mgorny at gentoo.org (=?UTF-8?Q?Micha=C5=82_G=C3=B3rny?=) Date: Mon, 19 Apr 2021 19:33:53 +0200 Subject: [pypy-dev] pypy tests on aarch64 musl libc In-Reply-To: <6d90b5ce55e8d3838ebc53bb533dc754@ibh.de> References: <6d90b5ce55e8d3838ebc53bb533dc754@ibh.de> Message-ID: On Mon, 2021-04-19 at 19:12 +0200, Thomas Liske wrote: > Hi, > > I'm trying to contribute the packaging of pypy to Alpine Linux. I got > the bootstrapping for x86 x86_64 and s390x working. > On aarch64 two of the pypy tests are failing[1]: > > - TestLogParser.test > - TestMicroNumPy.test_reduce_logical_and > > [1] https://gitlab.alpinelinux.org/liske/aports/-/jobs/367904#L4261 > > > Are that known issues, is there anything I could do to help to fix them? > I don't know if my packaging attempt will be accepted for Alpine. > Running all tests without failures should not make it worse ;-) > Apparently they are not specific to Alpine: http://buildbot.pypy.org/summary?category=aarch64&branch=%3Ctrunk%3E I can't help you more than that, though. -- Best regards, Micha? G?rny From matti.picus at gmail.com Mon Apr 19 13:42:02 2021 From: matti.picus at gmail.com (Matti Picus) Date: Mon, 19 Apr 2021 13:42:02 -0400 Subject: [pypy-dev] pypy tests on aarch64 musl libc In-Reply-To: <6d90b5ce55e8d3838ebc53bb533dc754@ibh.de> References: <6d90b5ce55e8d3838ebc53bb533dc754@ibh.de> Message-ID: On 19/4/21 1:12 pm, Thomas Liske wrote: > Hi, > > I'm trying to contribute the packaging of pypy to Alpine Linux. I got > the bootstrapping for x86 x86_64 and s390x working. > On aarch64 two of the pypy tests are failing[1]: > > - TestLogParser.test > - TestMicroNumPy.test_reduce_logical_and > > [1] https://gitlab.alpinelinux.org/liske/aports/-/jobs/367904#L4261 > > > Are that known issues, is there anything I could do to help to fix > them? I don't know if my packaging attempt will be accepted for > Alpine. Running all tests without failures should not make it worse ;-) > > > Regards, > Thomas > Here are the buildbot results on the Linux aarch64 builds of the default (python2.7) branch http://buildbot.pypy.org/summary?category=aarch64&branch=default. Those failures are known. Matti From matti.picus at gmail.com Wed Apr 21 00:04:54 2021 From: matti.picus at gmail.com (Matti Picus) Date: Wed, 21 Apr 2021 00:04:54 -0400 Subject: [pypy-dev] Please do not create win64 wheels with the latest 7.3.4 release: bugfix needed. Message-ID: <5abcf0a5-fc4c-1c68-e99e-1291ab8c1170@gmail.com> An HTML attachment was scrubbed... URL: