Skip to content

Commit 51ebb68

Browse files
author
Matt Bertrand
committed
Upgrade gdal to 1.11.2
1 parent 1ee8a0d commit 51ebb68

3 files changed

Lines changed: 10 additions & 8 deletions

File tree

.travis.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,23 @@
11
language: python
22

33
sudo: required
4-
5-
addons:
6-
apt:
7-
packages:
8-
- python-dev
9-
- libgdal1-dev
4+
dist: trusty
105

116
python:
127
- "2.7"
138

149
before_install:
10+
- sudo add-apt-repository ppa:ubuntugis/ppa -y
1511
- sudo apt-get -qq update
12+
- sudo apt-get install python-dev libgdal1-dev gdal-bin
1613

1714
install:
1815
- export CPLUS_INCLUDE_PATH=/usr/include/gdal
1916
- export C_INCLUDE_PATH=/usr/include/gdal
2017
- pip install -r dev-requirements.txt
2118
- pip install -e .
2219
- git clone -b 2.4.x https://github.com/GeoNode/geonode.git
23-
- cp local_settings.py geonode/geonode/.
20+
- cp local_settings.py.template geonode/geonode/local_settings.py
2421
- pip install -e geonode
2522

2623
script:

local_settings.py.template

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from django.conf import settings
2+
3+
INSTALLED_APPS = settings.INSTALLED_APPS + (
4+
'dataqs',
5+
)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@
4242
'pymongo',
4343
'numpy',
4444
'rasterio==0.31.0',
45-
'gdal==1.10'
45+
'gdal==1.11.2'
4646
]
4747
)

0 commit comments

Comments
 (0)