Skip to content

Commit

Permalink
Add Python 3.10 workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
uranusjr committed Aug 20, 2021
1 parent e483f53 commit d1d9bc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test_wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ def test_install_prefix(self, data, tmpdir):
self.name,
user=False,
home=None,
root=tmpdir,
root=str(tmpdir), # Casting needed for CPython 3.10+. See GH-10358.
isolated=False,
prefix=prefix,
)
Expand Down

0 comments on commit d1d9bc5

Please sign in to comment.