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 5deed81 commit 012731cCopy full SHA for 012731c
setup.py
@@ -1406,7 +1406,7 @@ def excluded(root: str, d: str) -> bool:
1406
dirs.remove(d)
1407
for f in files:
1408
ext = f.rpartition('.')[-1]
1409
- if ext in ('so', 'dylib', 'pyc', 'pyo'):
+ if ext in ('so', 'dylib', 'pyc', 'pyo') or f.endswith('_generated.h'):
1410
os.unlink(os.path.join(root, f))
1411
for x in glob.glob('glfw/wayland-*-protocol.[ch]'):
1412
os.unlink(x)
0 commit comments