Skip to content

Commit

Permalink
Merge pull request #176 from szymonos/dev
Browse files Browse the repository at this point in the history
refactor(sh): install_azurecli
  • Loading branch information
szymonos authored Nov 20, 2024
2 parents 0066649 + 3aef567 commit 357154a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .assets/provision/install_azurecli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ unset __conda_setup
# install azure-cli in dedicated environment
if ! conda env list | grep -qw '^azurecli'; then
if uname -r 2>&1 | grep -qw 'WSL2'; then
conda create --name azurecli --yes python=3.11 pip
conda create --name azurecli --yes python=3.12 pip
else
# https://github.com/conda/conda/issues/12051
conda create --name azurecli --yes python=3.11 pip numpy==1.26.4 fonttools==4.53.0
conda create --name azurecli --yes python=3.12 pip numpy==1.26.4 fonttools==4.53.0
fi
fi
conda activate azurecli
Expand Down

0 comments on commit 357154a

Please sign in to comment.