Skip to content

Commit 3b76e80

Browse files
committed
bump
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 35a79a1 commit 3b76e80

File tree

1 file changed

+4
-1
lines changed
  • tests/_data/infiles/environment/with-extras

1 file changed

+4
-1
lines changed

tests/_data/infiles/environment/with-extras/init.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,14 @@ def pip_run(*args: str, **kwargs: Any) -> CompletedProcess:
4848

4949

5050
def pip_install(*args: str) -> None:
51+
t = join(env_dir, 'Lib', 'site-packages') \
52+
if os_name == 'nt' \
53+
else join(env_dir, 'lib', f'python{version_info[0]}.{version_info[1]}', 'site-packages')
5154
pip_run(
5255
'install', '--require-virtualenv', '--no-input', '--progress-bar=off', '--no-color',
5356
'--python-version=3.14', # needed for compatibility/reproducibility
5457
'--only-binary=:all:',
55-
'-t', join(env_dir, 'lib', f'python{version_info[0]}.{version_info[1]}', 'site-packages'),
58+
'-t', t,
5659
'-c', constraint_file, # needed for reproducibility
5760
*args,
5861
)

0 commit comments

Comments
 (0)