Changeset 02ba2df in sasview
- Timestamp:
- Apr 4, 2017 4:12:57 PM (8 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 83cd257
- Parents:
- 8374dc0
- git-author:
- Andrew Nelson <andyfaff@…> (03/25/17 21:17:20)
- git-committer:
- Andrew Nelson <andyfaff@…> (04/04/17 16:12:57)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
.travis.yml
rfafff1a r02ba2df 3 3 language: python 4 4 5 # can eventually include OSX here.6 5 matrix: 7 6 include: 8 7 - os: linux 9 env: PY=2.7 8 env: 9 - PY=2.7 10 - NUMPYSPEC=numpy 11 - os: osx 12 language: generic 13 env: 14 - PY=2.7 15 - NUMPYSPEC=numpy 10 16 11 17 # whitelist … … 30 36 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then 31 37 wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; 38 sudo apt-get update; sudo apt-get install python-pyopencl; 39 elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then 40 wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh; 32 41 fi 42 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then 43 "export DISPLAY=:99.0"; 44 "sh -e /etc/init.d/xvfb start"; 45 sleep 3; # give xvfb some time to start 46 fi 47 33 48 - bash miniconda.sh -b -p $HOME/miniconda 34 49 - export PATH="$HOME/miniconda/bin:$PATH" … … 41 56 # could install other dependencies, but they're locked to specific 42 57 # versions in build/requirements.txt 43 - conda install --yes python=$PY numpy scipy cython pylint wxpython 44 - sudo apt-get update; sudo apt-get install python-pyopencl 58 - conda install --yes python=$PY $NUMPYSPEC scipy cython pylint wxpython 45 59 46 60 install: … … 48 62 - pip install matplotlib 49 63 50 before_script: 51 - "export DISPLAY=:99.0" 52 - "sh -e /etc/init.d/xvfb start" 53 - sleep 3 # give xvfb some time to start 54 64 55 65 script: 56 66 - cd ..
Note: See TracChangeset
for help on using the changeset viewer.