From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 15 Jul 2021 10:10:57 +0000 (-0700) Subject: Fix osx_framework_user include to match distutils (GH-27093) (GH-27159) X-Git-Tag: v3.10.0rc1~121 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3026d1381e1e3cb7cd0df28c9a0b5f067148665d;p=thirdparty%2FPython%2Fcpython.git Fix osx_framework_user include to match distutils (GH-27093) (GH-27159) (cherry picked from commit 28544609cb2a79d8d7ea5a54714d723669ef2adb) Co-authored-by: Tzu-ping Chung --- diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py index 730d33dfe1ec..d70088039c98 100644 --- a/Lib/sysconfig.py +++ b/Lib/sysconfig.py @@ -111,7 +111,7 @@ if _HAS_USER_BASE: 'platstdlib': '{userbase}/lib/python', 'purelib': '{userbase}/lib/python/site-packages', 'platlib': '{userbase}/lib/python/site-packages', - 'include': '{userbase}/include', + 'include': '{userbase}/include/python{py_version_short}', 'scripts': '{userbase}/bin', 'data': '{userbase}', }, diff --git a/Misc/NEWS.d/next/macOS/2021-07-12-15-42-02.bpo-41972.yUjE8j.rst b/Misc/NEWS.d/next/macOS/2021-07-12-15-42-02.bpo-41972.yUjE8j.rst new file mode 100644 index 000000000000..6c70c07669f9 --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2021-07-12-15-42-02.bpo-41972.yUjE8j.rst @@ -0,0 +1,2 @@ +The framework build's user header path in sysconfig is changed to add a +'pythonX.Y' component to match distutils's behavior.