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 5774fbc commit 91ef556Copy full SHA for 91ef556
tests/_data/infiles/environment/with-extras/init.py
@@ -48,7 +48,7 @@ def pip_run(*args: str, **kwargs: Any) -> CompletedProcess:
48
return res
49
50
51
-def pip_install(*args: str, side_packages_dir: str) -> None:
+def pip_install(*args: str, site_packages_dir: str) -> None:
52
if side_packages_dir is None:
53
raise RuntimeError()
54
pip_run(
@@ -84,7 +84,7 @@ def main() -> None:
84
'zipp>=3.1.0',
85
'jsonschema-specifications>=2023.03.6',
86
'typing_extensions>=4',
87
- side_packages_dir=spd
+ site_packages_dir=spd
88
)
89
90
0 commit comments