Skip to content

Commit

Permalink
Fix wheel build fails with missing implementation (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborbernat authored Feb 16, 2024
1 parent b6a73f7 commit 07b35a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:

jobs:
test:
name: test ${{ matrix.py }}
name: test ${{ matrix.py }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion src/tox_uv/_venv.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def _get_python(self, base_python: list[str]) -> PythonInfo | None: # noqa: PLR
)
spec = PythonSpec.from_string_spec(base)
return PythonInfo(
implementation=spec.implementation,
implementation=spec.implementation or "CPython",
version_info=VersionInfo(
major=spec.major,
minor=spec.minor,
Expand Down

0 comments on commit 07b35a1

Please sign in to comment.