https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 7004324f9158f3d259a1f4c8969248f4e6f40f63 authored by Bryna Hazelton on 18 November 2022, 00:46:04 UTC, committed by Bryna Hazelton on 20 December 2022, 19:45:00 UTC
1 parent 8412197
Raw File
Tip revision: 7004324f9158f3d259a1f4c8969248f4e6f40f63 authored by Bryna Hazelton on 18 November 2022, 00:46:04 UTC
more test coverage
Tip revision: 7004324
_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