https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 86d010a2471c533d52f8d90996f4449d56dba790 authored by Matthew Kolopanis on 13 May 2019, 18:09:19 UTC, committed by Bryna Hazelton on 22 May 2019, 18:57:04 UTC
1 parent ce728a2
Raw File
Tip revision: 86d010a2471c533d52f8d90996f4449d56dba790 authored by Matthew Kolopanis on 13 May 2019, 18:09:19 UTC
fdh nose --> pytest. update depreciation warning in a write call
Tip revision: 86d010a
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