Skip to content
This repository was archived by the owner on Apr 18, 2026. It is now read-only.

Commit e5cd668

Browse files
committed
Update license paths.
1 parent b198477 commit e5cd668

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

make_wheels.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,8 @@ def write_ziglang_wheel(out_dir, *, version, platform, archive):
189189
'lib/libcxx/LICENSE.TXT',
190190
'lib/libcxxabi/LICENSE.TXT',
191191
'lib/libunwind/LICENSE.TXT',
192-
'lib/libc/freebsd/COPYRIGHT',
192+
'lib/libc/freebsd/COPYRIGHT',
193+
'lib/libc/wasi/fts/musl-fts/COPYING',
193194
]
194195
excluded_license_paths = [
195196
# not a license text; contains macros that generate license strings
@@ -351,7 +352,7 @@ def get_argparser():
351352
supported_platforms = ', '.join(sorted(ZIG_PYTHON_PLATFORMS.keys()))
352353
description = (f"Repackage official Zig downloads as Python wheels.\n\n"
353354
f"Supported platforms: {supported_platforms}")
354-
355+
355356
parser = argparse.ArgumentParser(prog=__file__, description=description,
356357
formatter_class=argparse.RawDescriptionHelpFormatter)
357358
parser.add_argument('--version', default='latest',
@@ -371,7 +372,7 @@ def main():
371372
if 'all' in platforms:
372373
platforms = list(ZIG_PYTHON_PLATFORMS.keys())
373374

374-
375+
375376
fetch_and_write_ziglang_wheels(outdir=args.outdir, zig_version=args.version,
376377
wheel_version_suffix=args.suffix, platforms=platforms)
377378

0 commit comments

Comments
 (0)