Skip to content

Commit ed6fa58

Browse files
committed
static 3.13 for now
1 parent f25923b commit ed6fa58

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

benchmarks/asv_delegated.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -102,16 +102,17 @@ class Mode(enum.Enum):
102102

103103
def py_ver_from_lockfiles(lockfile: Path) -> str:
104104
pattern = re.compile(r"py(\d+)-")
105-
search = pattern.search(lockfile.name
105+
search = pattern.search(lockfile.name)
106106
assert search is not None
107107
version = search.group(1)
108108
return f"{version[0]}.{version[1:]}"
109109

110-
python_versions = [
111-
py_ver_from_lockfiles(lockfile)
112-
for lockfile in lockfile_dir.glob("*.lock")
113-
]
114-
python_version = max(python_versions)
110+
# python_versions = [
111+
# py_ver_from_lockfiles(lockfile)
112+
# for lockfile in lockfile_dir.glob("*.lock")
113+
# ]
114+
# python_version = max(python_versions)
115+
python_version = "3.13"
115116

116117
# Construct and run the environment preparation command.
117118
local_envs = dict(environ)

0 commit comments

Comments
 (0)