Skip to content

Commit c13f80e

Browse files
committed
bump
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 2febfda commit c13f80e

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

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

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from os import name as os_name
2323
from os.path import dirname, join
2424
from subprocess import PIPE, CompletedProcess, run # nosec:B404
25-
from sys import argv, executable
25+
from sys import argv, executable, version_info
2626
from typing import Any
2727
from venv import EnvBuilder
2828

@@ -48,10 +48,14 @@ def pip_run(*args: str, **kwargs: Any) -> CompletedProcess:
4848

4949

5050
def pip_install(*args: str) -> None:
51+
site = None
5152
pip_run(
5253
'install', '--require-virtualenv', '--no-input', '--progress-bar=off', '--no-color',
54+
'--python-version=3.14', # needed for compatibility
55+
'--only-binary=:all:',
56+
'-t', join(env_dir, 'lib', f'python{version_info[0]}.{version_info[1]}', 'site-packages'),
5357
'-c', constraint_file, # needed for reproducibility
54-
*args
58+
*args,
5559
)
5660

5761

tests/_data/infiles/environment/with-extras/pinning.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ rpds-py==0.27.1
2525
six==1.17.0
2626
sortedcontainers==2.4.0
2727
types-python-dateutil==2.9.0.20251008
28+
typing_extensions==4.15.0
2829
uri-template==1.3.0
2930
webcolors==24.11.1
3031
zipp==3.20.2

0 commit comments

Comments
 (0)