Closed utterances-bot closed 2 months 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 3953.
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!
FWIW, the issue with platstdlib was fixed in the next release.
PyPy v7.3.12 release | PyPy
https://www.pypy.org/posts/2023/06/pypy-v7312-release.html