We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cac1823 commit 0a3113fCopy full SHA for 0a3113f
python/pip_install/extract_wheels/lib/wheel.py
@@ -57,8 +57,9 @@ def entry_points(self) -> Dict[str, str]:
57
name = "{}-{}".format(metadata.name.replace("-", "_"), metadata.version)
58
# Note that the zipfile module always uses the forward slash as
59
# directory separator, even on Windows, so don't use os.path.join
60
- # here.
61
- # Ref, for Python 3.10: https://github.com/python/cpython/blob/3.10/Lib/zipfile.py#L355
+ # here. Reference for Python 3.10:
+ # https://github.com/python/cpython/blob/3.10/Lib/zipfile.py#L355.
62
+ # TODO: use zipfile.Path once 3.8 is our minimum supported version
63
entry_points_path = "{}.dist-info/entry_points.txt".format(name)
64
65
# If this file does not exist in the wheel, there are no entry points
0 commit comments