Skip to content

Commit

Permalink
twine 4
Browse files Browse the repository at this point in the history
  • Loading branch information
pngwn committed Mar 19, 2024
1 parent d40b7ef commit 3bdcb8c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions packages/publish-pypi/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,8 @@ async function run() {
)
).filter(Boolean) as PythonPackage[];

const packages_to_publish_sorted = await topological_sort(
packages_to_publish
);
const packages_to_publish_sorted =
await topological_sort(packages_to_publish);

if (packages_to_publish_sorted.length === 0) {
info("No packages to publish.");
Expand Down Expand Up @@ -76,7 +75,7 @@ async function run() {
"pip",
[
"install",
"twine",
"twine==4",
"--user",
"--upgrade",
"--no-cache-dir",
Expand Down

0 comments on commit 3bdcb8c

Please sign in to comment.