File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments