File tree Expand file tree Collapse file tree 7 files changed +285
-251
lines changed
Expand file tree Collapse file tree 7 files changed +285
-251
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ language: python
22sudo : false
33python :
44- ' 2.7'
5+ - ' 3.5'
56
67install :
78- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh
@@ -14,15 +15,18 @@ install:
1415- conda update -q conda
1516- conda info -a
1617- |
17- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION pip numpy=1.11 pandas pytest matplotlib scipy statsmodels
18+ conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION pip numpy pandas pytest matplotlib scipy statsmodels
1819 - source activate test-environment
1920- conda list
20- - pip install .
2121- pip install https://github.com/UDST/orca/archive/master.zip
22- - pip install urbansim pandana
23- - git clone git@github.com:urbansim/urbansim_parcels.git
22+ - pip install https://github.com/pksohn/urbansim/archive/python3.zip
23+ - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then pip install pandana; else
24+ pip install https://github.com/UDST/osmnet/archive/python3-support.zip &&
25+ pip install https://github.com/UDST/pandana/archive/python3-support.zip; fi
26+ - pip install .
27+ - cd .. && git clone git@github.com:urbansim/urbansim_parcels.git
2428- pip install ./urbansim_parcels
2529
2630script :
27- - py.test
28- - cd urbansim_parcels/sf_example; python simulate.py
31+ - cd "$TRAVIS_BUILD_DIR" && py.test
32+ - cd ../ urbansim_parcels/sf_example && python simulate.py
Original file line number Diff line number Diff line change 1+ __version__ = '0.2.0'
You can’t perform that action at this time.
0 commit comments