We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d94d8e commit e40c4c1Copy full SHA for e40c4c1
setuptools/command/editable_wheel.py
@@ -810,8 +810,8 @@ def _check_case(path, n):
810
path.as_posix() in (p.as_posix() for p in path.parent.iterdir())
811
# check the case of the next n parent directories the same way
812
and all(
813
- p1.as_posix() in (p.as_posix() for p in p2.iterdir())
814
- for p1, p2 in list(zip(path.parents, path.parents[1:]))[:n]
+ part.as_posix() in (p.as_posix() for p in part.parent.iterdir())
+ for part in list(path.parents)[:n]
815
)
816
817
0 commit comments