Skip to content

Commit 9c24f82

Browse files
authored
fix ci workflow failure (#868)
1 parent 6cb03bb commit 9c24f82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def install_pipenv():
6464

6565
def install_python(directory: Union[str, Path]):
6666
print(f"Installing python for {directory} ...")
67-
install_command = f"pipenv --rm;pipenv --python 3.9"
67+
install_command = f"pipenv --rm;pipenv --python 3.10.17"
6868
if (os.environ.get('CONDA_DEFAULT_ENV') is not None) and (os.environ.get('CONDA_PREFIX') is not None):
6969
print("conda env detected using conda to get pipenv python version")
7070
install_command = f"pipenv --rm;pipenv --python=$(conda run which python) --site-packages"

0 commit comments

Comments
 (0)