Skip to content

Commit d47fd3f

Browse files
committed
chore: minor adjustments to diff
Signed-off-by: Henry Schreiner <[email protected]>
1 parent d0034da commit d47fd3f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ Examples = "https://github.com/scikit-build/scikit-build-core/tree/main/tests/pa
8888
cmake_extensions = "scikit_build_core.setuptools.extension:cmake_extensions"
8989
cmake_source_dir = "scikit_build_core.setuptools.extension:cmake_source_dir"
9090

91+
9192
[tool.hatch]
9293
version.source = "vcs"
9394
build.hooks.vcs.version-file = "src/scikit_build_core/_version.py"

src/scikit_build_core/builder/wheel_tag.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def compute_best(
3737
pyvers = [interp]
3838

3939
if sys.platform.startswith("win") and archs:
40-
plats = [x.replace("-", "_") for x in archs]
40+
plats = (x.replace("-", "_") for x in archs)
4141
elif sys.platform.startswith("darwin"):
4242
pairs: Iterable[tuple[str | None, bool]]
4343
if expand_macos and archs == ["universal2"]:

0 commit comments

Comments
 (0)