summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2024-06-23 17:06:07 (GMT)
committerGitHub <noreply@github.com>2024-06-23 17:06:07 (GMT)
commit1ba0bb21ed4eb54023fdfccc9cb20be8fff946b1 (patch)
tree280369202a78e4b7be1b17274420763eded9eb64 /Misc/NEWS.d
parent0b918e81c1de909f753f1d02bcba0f831d63cfa8 (diff)
downloadcpython-1ba0bb21ed4eb54023fdfccc9cb20be8fff946b1.zip
cpython-1ba0bb21ed4eb54023fdfccc9cb20be8fff946b1.tar.gz
cpython-1ba0bb21ed4eb54023fdfccc9cb20be8fff946b1.tar.bz2
gh-120910: Fix issue resolving relative paths outside site-packages. (#120911)
Incorporates changes from importlib_metadata 7.2.1.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2024-06-23-11-21-27.gh-issue-120910.t0QXdB.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-06-23-11-21-27.gh-issue-120910.t0QXdB.rst b/Misc/NEWS.d/next/Library/2024-06-23-11-21-27.gh-issue-120910.t0QXdB.rst
new file mode 100644
index 0000000..3773cdc
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-06-23-11-21-27.gh-issue-120910.t0QXdB.rst
@@ -0,0 +1,2 @@
+When reading installed files from an egg, use ``relative_to(walk_up=True)``
+to honor files installed outside of the installation root.