pypy / pypy.org

Sources for website at https://www.pypy.org
33 stars 11 forks source link

PyPy v7.3.12 release | PyPy #98

Open utterances-bot opened 1 year ago

utterances-bot commented 1 year ago

PyPy v7.3.12 release | PyPy

https://www.pypy.org/posts/2023/06/pypy-v7312-release.html

mattip commented 1 year ago

It turns out there is a bug in the 3.10 release in sysconfig.py when probing the different stdlib schemes for osx_framework_user. Note the misplaced quote mark:

diff -r ba2e9a6c433e -r ae3a931895a8 lib-python/3/sysconfig.py
--- a/lib-python/3/sysconfig.py Thu Jun 15 12:08:03 2023 +0300
+++ b/lib-python/3/sysconfig.py Mon Jun 19 11:58:41 2023 +0300
@@ -108,7 +108,7 @@
             },
         'osx_framework_user': {
             'stdlib': '{userbase}/lib/{implementation_lower}',
-        '    platstdlib': '{userbase}/lib/{implementation_lower}',
+            'platstdlib': '{userbase}/lib/{implementation_lower}',
             'purelib': '{userbase}/lib/{implementation_lower}/site-packages',
             'platlib': '{userbase}/lib/{implementation_lower}/site-packages',
             'include': '{userbase}/include/{implementation_lower}{py_version_short}',

This was reported in issue 3954.

spbisc97 commented 1 year ago

When this will be integrated in conda-forge? and how can i use it in conda/mamba in the meantime? Thanks for your beautiful work!