https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 97ac0afcbe5c30e4a85c9a6aa2f5632fa2639e7d authored by Paul La Plante on 13 October 2022, 23:16:45 UTC, committed by Bryna Hazelton on 17 October 2022, 22:45:57 UTC
1 parent c6eff3d
Raw File
Tip revision: 97ac0afcbe5c30e4a85c9a6aa2f5632fa2639e7d authored by Paul La Plante on 13 October 2022, 23:16:45 UTC
Also cleanup pyproject.toml syntax
Tip revision: 97ac0af
_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