https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Raw File
Tip revision: 090b4b9efedd04671d2ea3967cc85d898f3c3d49 authored by Bryna Hazelton on 30 November 2022, 23:32:39 UTC
Fix the incorrect version in the changelog, add a missed item earlier
Tip revision: 090b4b9
_activate_current_env.sh
# This script should never be called directly, only sourced:

#     source _activate_current_env.sh

# Initialize the current shell
eval "$(`which micromamba` shell hook --shell=bash)"

# For robustness, try all possible activate commands.
conda activate "${ENV_NAME}" 2>/dev/null \
  || mamba activate "${ENV_NAME}" 2>/dev/null \
  || micromamba activate "${ENV_NAME}"
back to top