Skip to content

Commit

Permalink
Rely on manylinux1 wheels for GDAL (#22)
Browse files Browse the repository at this point in the history
* Rely on manylinux1 wheels for GDAL

* require numpy>=1.10

* No need for Cython
  • Loading branch information
sgillies committed Oct 5, 2016
1 parent e3dac7f commit d282a55
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 43 deletions.
13 changes: 0 additions & 13 deletions .travis-install-platter.sh

This file was deleted.

7 changes: 0 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,6 @@ env:
global:
- PIP_WHEEL_DIR=$HOME/.cache/pip
- PIP_FIND_LINKS=$HOME/.cache/pip
addons:
apt:
packages:
- libgdal-dev
- libgdal1h
- gdal-bin
python:
- "2.7"
- "3.5"
Expand All @@ -19,7 +13,6 @@ cache:
- $HOME/.cache/pip/
install:
- pip install -U pip
- pip install --pre --no-binary rasterio rasterio==1.0a1
- pip install -e .[test]
script:
- py.test --cov mbtiles --cov-report term-missing
Expand Down
20 changes: 0 additions & 20 deletions .travis_riodeps.sh

This file was deleted.

4 changes: 2 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ cligj
coveralls>=0.4
cython==0.21.2
enum34
numpy>=1.8.0
numpy>=1.10
pytest
rasterio>=0.23
rasterio>=1.0a2
snuggs>=1.2
setuptools>=0.9.8
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
install_requires=[
'click',
'mercantile',
'rasterio>=1.0a1'
'numpy>=1.10',
'rasterio>=1.0a2'
],
extras_require={
'test': ['coveralls', 'pytest', 'pytest-cov'],
Expand Down

0 comments on commit d282a55

Please sign in to comment.