Skip to content

Commit

Permalink
Revert --force mamba option
Browse files Browse the repository at this point in the history
  • Loading branch information
englehardt committed Aug 9, 2024
1 parent cc2df7b commit f8eb445
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ if [ "$1" != "--skip-create" ]; then
case "$(uname -s)" in
Darwin)
echo '...using the osx-64 channel for MacOS dependencies'
CONDA_SUBDIR=osx-64 PYTHONNOUSERSITE=True mamba env create -q --force -f environment.yaml
CONDA_SUBDIR=osx-64 PYTHONNOUSERSITE=True mamba env create -q -f environment.yaml
;;
*)
PYTHONNOUSERSITE=True mamba env create -q --force -f environment.yaml
PYTHONNOUSERSITE=True mamba env create -q -f environment.yaml
;;
esac

Expand Down
4 changes: 2 additions & 2 deletions scripts/repin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ eval "$(conda shell.bash hook)"
case "$(uname -s)" in
Darwin)
echo 'Using the osx-64 channel for MacOS dependencies...'
CONDA_SUBDIR=osx-64 PYTHONNOUSERSITE=True mamba env create -q --force -f environment-unpinned.yaml
CONDA_SUBDIR=osx-64 PYTHONNOUSERSITE=True mamba env create -q -f environment-unpinned.yaml
;;
*)
PYTHONNOUSERSITE=True mamba env create -q --force -f environment-unpinned.yaml
PYTHONNOUSERSITE=True mamba env create -q -f environment-unpinned.yaml
;;
esac

Expand Down

0 comments on commit f8eb445

Please sign in to comment.