Skip to content

Commit 5f06373

Browse files
committed
Cast root to string explicitly
1 parent 6aa09ba commit 5f06373

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

script/create_venv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def post_setup(self, context: Any) -> None:
4242
self.pip_install(context, "--upgrade", "pip")
4343
print("Installing package and any extra requirements")
4444
self.pip_install(
45-
context, "--use-pep517", "-e", f"{PROJECT_ROOT}{self.extra_requirements}"
45+
context, "--use-pep517", "-e", f"{PROJECT_ROOT!s}{self.extra_requirements}"
4646
)
4747

4848
@staticmethod

0 commit comments

Comments
 (0)