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 b6607dc commit 8ad5407Copy full SHA for 8ad5407
setuptools/_wheelbuilder.py
@@ -114,9 +114,9 @@ def add_tree(
114
dirs[:] = [x for x in sorted(dirs) if x != "__pycache__"]
115
for name in sorted(files):
116
file = os.path.normpath(os.path.join(root, name))
117
- if not os.path.isfile(file) or should_exclude(file):
118
- continue
119
arcname = os.path.relpath(file, path).replace(os.path.sep, "/")
+ if not os.path.isfile(file) or should_exclude(arcname):
+ continue
120
if prefix:
121
arcname = os.path.join(prefix, arcname)
122
self.add_existing_file(arcname, file)
0 commit comments