Changeset 9617 for trunk/anuga_core/.travis.yml
- Timestamp:
- Feb 6, 2015, 12:03:23 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/.travis.yml
r9616 r9617 13 13 # conda-based environment instead 14 14 - deactivate 15 - wget http://repo.continuum.io/miniconda/Miniconda-3.8.3-Linux-x86_64.sh \ 16 -O miniconda.sh 15 - wget http://repo.continuum.io/miniconda/Miniconda-3.8.3-Linux-x86_64.sh -O miniconda.sh 17 16 - chmod +x miniconda.sh && ./miniconda.sh -b 18 17 - export PATH=/home/travis/miniconda/bin:$PATH … … 26 25 27 26 # Conda dependencies 28 - conda create -n testenv --yes python=$PYTHON_VERSION \ 29 numpy scipy netcdf4 nose matplotlib 27 - conda create -n testenv --yes python=$PYTHON_VERSION pip numpy scipy netcdf4 nose matplotlib 30 28 - source activate testenv 31 29 … … 35 33 - export GDAL_DATA=`gdal-config --datadir` 36 34 35 # Install more software to deal with geographical projections 36 - pip install pyproj 37 37 38 # python 2.6 doesn't have argparse by default 38 39 - if [[ "$PYTHON_VERSION" == "2.6" ]]; then conda install argparse; fi 39 40 40 41 41 - python setup.py install
Note: See TracChangeset
for help on using the changeset viewer.