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):
102
102
103
103
def py_ver_from_lockfiles (lockfile : Path ) -> str :
104
104
pattern = re .compile (r"py(\d+)-" )
105
- search = pattern .search (lockfile .name
105
+ search = pattern .search (lockfile .name )
106
106
assert search is not None
107
107
version = search .group (1 )
108
108
return f"{ version [0 ]} .{ version [1 :]} "
109
109
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"
115
116
116
117
# Construct and run the environment preparation command.
117
118
local_envs = dict (environ )
You can’t perform that action at this time.
0 commit comments