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 4ce6f37 commit fb21313Copy full SHA for fb21313
src/scikit_build_core/repair_wheel/__init__.py
@@ -37,7 +37,7 @@ def _get_buildenv_platlib() -> str:
37
real_purelib_path = DIR.parent.parent
38
if real_purelib_path.samefile(purelib_path):
39
# Here is the normal state if we are in a real venv
40
- return platlib_path
+ return str(Path(platlib_path).resolve())
41
# Otherwise we need to trick it to giving us the real path
42
data_path = sysconfig.get_path("data")
43
platlib_relative_path = Path(platlib_path).relative_to(data_path)
0 commit comments