Skip to content

Commit 7ed5911

Browse files
committed
Add Python 3.10 workaround
1 parent 8fd564b commit 7ed5911

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/test_wheel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ def test_install_prefix(self, data, tmpdir):
422422
self.name,
423423
user=False,
424424
home=None,
425-
root=tmpdir,
425+
root=str(tmpdir), # Casting needed for CPython 3.10+. See GH-10358.
426426
isolated=False,
427427
prefix=prefix,
428428
)

0 commit comments

Comments
 (0)