Skip to content

Commit e4bd9e1

Browse files
committed
chg: update supported/tested Django versions
* setup.py install_requires uses `>=1.8` to match our current test matrix * Travis allows failures for Django 1.10 so we can start tracking the upcoming release
1 parent 1bfca83 commit e4bd9e1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ before_install:
2828
- mkdir -p $HOME/download-cache
2929

3030
install:
31-
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install mock==1.0.1; fi
3231
- pip install requests "Django${DJANGO_VERSION}"
3332
- python setup.py clean build install
3433

@@ -43,10 +42,12 @@ env:
4342
matrix:
4443
- DJANGO_VERSION=">=1.8,<1.9"
4544
- DJANGO_VERSION=">=1.9,<1.10"
45+
- DJANGO_VERSION="==1.10a1"
4646

4747
matrix:
4848
allow_failures:
4949
- python: "pypy"
50+
- env: DJANGO_VERSION="==1.10a1"
5051

5152
services:
5253
- elasticsearch

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from setuptools import setup
1313

1414
install_requires = [
15-
'Django',
15+
'Django>=1.8',
1616
]
1717

1818
tests_require = [

0 commit comments

Comments
 (0)