https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 84dcd7494d8b74018969f4049dc8551d2fa39583 authored by Bryna Hazelton on 03 May 2019, 17:05:44 UTC, committed by Jonathan Pober on 23 May 2019, 00:22:22 UTC
1 parent 4f988a6
Raw File
Tip revision: 84dcd7494d8b74018969f4049dc8551d2fa39583 authored by Bryna Hazelton on 03 May 2019, 17:05:44 UTC
Add conjugate_bls, set bda preferred ordering
Tip revision: 84dcd74
install-circle.sh
set -xe

apt-get update; apt-get install -y gcc g++
conda config --set always_yes yes --set changeps1 no
conda update -q conda
conda config --add channels conda-forge
conda info -a
conda create --name=${ENV_NAME}  python=$PYTHON --quiet
conda env update -f ci/${ENV_NAME}.yml
source activate ${ENV_NAME}
conda list -n ${ENV_NAME}
# check that the python version matches the desired one; exit immediately if not
PYVER=`python -c "from __future__ import print_function; import sys; print('{:d}.{:d}'.format(sys.version_info.major, sys.version_info.minor))"`
if [[ $PYVER != $PYTHON ]]; then
  exit 1;
fi
back to top