Skip to content

Commit f29550b

Browse files
committed
tmp
1 parent b8af421 commit f29550b

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

pulp_python/app/tasks/publish.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,14 @@ def write_simple_api(publication):
101101
relative_path = release["filename"]
102102
path = f"../../{relative_path}"
103103
checksum = release["sha256"]
104-
package_releases.append((relative_path, path, checksum))
104+
#package_releases.append((relative_path, path, checksum))
105+
package_releases.append(
106+
{
107+
"filename": relative_path,
108+
"url": path,
109+
"sha256": checksum,
110+
}
111+
)
105112
# Write the final project's page
106113
write_project_page(
107114
name=canonicalize_name(current_name),

0 commit comments

Comments
 (0)