Skip to content

Commit

Permalink
use just licenses as the license directory in a wheel (#2181)
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky authored Aug 15, 2024
1 parent 5b16d53 commit e0afec8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/module_writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1392,7 +1392,7 @@ pub fn write_dist_info(
}

if !metadata23.license_files.is_empty() {
let license_files_dir = dist_info_dir.join("license_files");
let license_files_dir = dist_info_dir.join("licenses");
writer.add_directory(&license_files_dir)?;
for path in &metadata23.license_files {
let filename = path.file_name().with_context(|| {
Expand Down

0 comments on commit e0afec8

Please sign in to comment.