Skip to content

Commit

Permalink
reorganizing travis and removing affine library from test module
Browse files Browse the repository at this point in the history
  • Loading branch information
wbierbower committed Apr 27, 2015
1 parent 64415ff commit ff0d945
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ python:
- "2.7"

before_install:
- sudo apt-get install -y python setuptools
- sudo apt-get install -y python-numpy
- sudo apt-get install -y python-scipy
- sudo apt-get install -y python-gdal
- sudo apt-get install -y libgdal-dev
- sudo apt-get install -y python-numpy
- sudo apt-get install -y python-shapely
- sudo pip install wheel setuptools cython nose
- sudo pip install pyproj pillow
- sudo pip install pygeoprocessing --no-deps

# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: python setup.py install
install: sudo pip install -r requirements --no-deps

# command to run tests, e.g. python setup.py test
script: python setup.py test
Expand Down
1 change: 0 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ fauxgeo 0.2.0 requires
* Scipy
* Matplotlib
* GDAL
* affine == 1.0

Installation
------------
Expand Down
3 changes: 2 additions & 1 deletion tests/test_raster.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
import tempfile

import numpy as np
from affine import Affine
# from affine import Affine
from fauxgeo.affine import Affine
import gdal

from fauxgeo import Raster
Expand Down
3 changes: 2 additions & 1 deletion tests/test_raster_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
import tempfile

import numpy as np
from affine import Affine
# from affine import Affine
from fauxgeo.affine import Affine
import gdal

from fauxgeo.raster_factory import RasterFactory
Expand Down

0 comments on commit ff0d945

Please sign in to comment.