Skip to content

Commit

Permalink
Fix bootstrap and build issues prior to next tag.
Browse files Browse the repository at this point in the history
* Remove conda-verify from python-3.12 base env install
  • Loading branch information
tskisner committed Nov 19, 2024
1 parent 1d45e96 commit e49e207
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions tools/bootstrap_base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,15 @@ inst=$(eval "${scriptdir}/fetch_check.sh" https://github.com/conda-forge/minifor

bash "${inst}" -b -f -p "${base}"

# Activate base and install libmamba solver
source "${base}/etc/profile.d/conda.sh"
conda activate base
conda update -n base --yes --all conda
conda install -n base --yes --all conda-libmamba-solver conda-build conda-verify conda-index
conda deactivate

# Create base config file
echo "# condarc bootstrapped by soconda" > "${base}/.condarc"
echo "channels:" >> "${base}/.condarc"
echo " - conda-forge" >> "${base}/.condarc"
echo "changeps1: false" >> "${base}/.condarc"
echo "solver: libmamba" >> "${base}/.condarc"

# Activate base and update conda tools
source "${base}/etc/profile.d/conda.sh"
conda activate base
conda update -n base --yes --all conda
conda install -n base --yes --all conda-build conda-index
conda deactivate

0 comments on commit e49e207

Please sign in to comment.