Skip to content

Commit 222517c

Browse files
committed
Update failing test due to latest versions of pip_run
It seems that the latest version of `pip_run` can no longer handle `str` objects in `inject_sitecustomize` (see `https://github.com/jaraco/pip-run/commit/30c62a0eadd5af422709e75993ff19a39fe69733`).
1 parent ff7ab94 commit 222517c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setuptools/tests/test_editable_install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ def test_editable_with_prefix(tmp_path, sample_project, editable_opts):
341341
site_packages.mkdir(parents=True)
342342

343343
# install workaround
344-
pip_run.launch.inject_sitecustomize(str(site_packages))
344+
pip_run.launch.inject_sitecustomize(site_packages)
345345

346346
env = dict(os.environ, PYTHONPATH=str(site_packages))
347347
cmd = [

0 commit comments

Comments
 (0)