-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Travis] Django 1.8 testing, remove unneeded lines
We allow 1.8 to fail as it's not currently out.
- Loading branch information
Showing
1 changed file
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,21 +17,22 @@ env: | |
- MODULES="Django>=1.5,<1.6" | ||
- MODULES="Django>=1.6,<1.7" | ||
- MODULES="Django>=1.7,<1.8" | ||
- MODULES="git+https://github.com/django/django.git@stable/1.8.x#egg=django" | ||
|
||
# Django 1.4 did not support Python 3. | ||
matrix: | ||
exclude: | ||
- python: "3.2" | ||
env: MODULES="Django>=1.4,<1.5" | ||
allow_failures: | ||
- env: MODULES="git+https://github.com/django/django.git@stable/1.8.x#egg=django" | ||
|
||
install: | ||
- sudo rm /etc/apt/sources.list.d/ubuntugis-stable-source.list | ||
- sudo apt-get update -qq | ||
- sudo apt-get install -qq python-gdal gdal-bin binutils | ||
- ln -s /usr/lib/python2.7/dist-packages/osgeo ~/virtualenv/python2.7/lib/python2.7/site-packages/ | ||
- ln -s /usr/lib/python2.7/dist-packages/GDAL-1.7.3.egg-info ~/virtualenv/python2.7/lib/python2.7/site-packages/ | ||
- pip install $MODULES --use-mirrors | ||
- pip install -r requirements.txt --use-mirrors | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
dracos
Author
Member
|
||
- sudo apt-get install -qq gdal-bin binutils | ||
- pip install $MODULES | ||
- pip install -r requirements.txt | ||
# The below is for Django 1.4 compatibility. If you don't need that, you could | ||
# just do the before_script step commented out below. | ||
- createdb -E UTF8 template_postgis && | ||
|
Why is the symlinking-in of GDAL and osgeo no longer required? (This sounds like it might be good news :))