Remove with_stem() usage to support Python 3.8
This commit is contained in:
parent
f3e3483b46
commit
32b25f912d
1 changed files with 2 additions and 2 deletions
|
|
@ -81,7 +81,7 @@ def download_tool(folder, name):
|
||||||
# Get ARCH specific URL if available
|
# Get ARCH specific URL if available
|
||||||
if name_arch in SOURCES:
|
if name_arch in SOURCES:
|
||||||
source_url = SOURCES[name_arch]
|
source_url = SOURCES[name_arch]
|
||||||
out_path = out_path.with_stem(name_arch)
|
out_path = out_path.with_name(f'{name_arch}{out_path.suffix}')
|
||||||
else:
|
else:
|
||||||
source_url = SOURCES[name]
|
source_url = SOURCES[name]
|
||||||
|
|
||||||
|
|
@ -153,7 +153,7 @@ def get_tool_path(folder, name, check=True):
|
||||||
tool_path = bin_dir.joinpath(f'{folder}/{name_arch}.exe')
|
tool_path = bin_dir.joinpath(f'{folder}/{name_arch}.exe')
|
||||||
if not (tool_path.exists() or name_arch in SOURCES):
|
if not (tool_path.exists() or name_arch in SOURCES):
|
||||||
# Use "default" path instead
|
# Use "default" path instead
|
||||||
tool_path = tool_path.with_stem(name)
|
tool_path = tool_path.with_name(f'{name}.exe')
|
||||||
|
|
||||||
# Missing?
|
# Missing?
|
||||||
if check and not tool_path.exists():
|
if check and not tool_path.exists():
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue