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 6660e07 commit ab94109Copy full SHA for ab94109
.github/workflows/scripts/build_placeholders.sh
@@ -22,7 +22,10 @@ version = "0.0.1"
22
[tool.hatch.build.targets.wheel]
23
bypass-selection = true
24
EOF
25
- python -m build --wheel pkg_placeholder
+ # We only want wheels.
26
+ # We don't need build isolation because we'll trash the env anyway in CI.
27
+ # Skipping isolation speeds up the job.
28
+ python -m build --no-isolation --wheel pkg_placeholder
29
mv pkg_placeholder/dist/* dist/
30
fi
31
0 commit comments