diff options
author | Ned Deily <nad@python.org> | 2018-01-30 10:14:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-30 10:14:09 (GMT) |
commit | 763f094b1f0ce2a07768828e78afe9687e9ad3bb (patch) | |
tree | 76c3a1c1ef107ffd0c0a09ab1f96d786e69539d3 /Misc | |
parent | 67adb31a416864f853772c3e74a06caeadc9b6f1 (diff) | |
download | cpython-763f094b1f0ce2a07768828e78afe9687e9ad3bb.zip cpython-763f094b1f0ce2a07768828e78afe9687e9ad3bb.tar.gz cpython-763f094b1f0ce2a07768828e78afe9687e9ad3bb.tar.bz2 |
bpo-28440: Don't add /Library/Python/3.x/site-packages to sys.path (#5445)
No longer add /Library/Python/3.x/site-packages, the Apple-supplied
system Python site-packages directory, to sys.path for macOS framework
builds in case Apple ships a version of Python 3. A similar change
was made earlier to Python 2.7 where it was found that the coupling
between the system Python and a user-installed framework Python often
caused confusion or pip install failures.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/macOS/2018-01-30-04-40-12.bpo-28440.W_BUWU.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/macOS/2018-01-30-04-40-12.bpo-28440.W_BUWU.rst b/Misc/NEWS.d/next/macOS/2018-01-30-04-40-12.bpo-28440.W_BUWU.rst new file mode 100644 index 0000000..e973e09 --- /dev/null +++ b/Misc/NEWS.d/next/macOS/2018-01-30-04-40-12.bpo-28440.W_BUWU.rst @@ -0,0 +1,2 @@ +No longer add /Library/Python/3.x/site-packages to sys.path for macOS +framework builds to avoid future conflicts. |