Skip to content

Commit bc630e5

Browse files
MacroMacro
Macro
authored and
Macro
committed
Test Django 1.9 directly
1 parent fa04a3a commit bc630e5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616

1717
install:
1818
- pip install -U 'coverage<4' codecov
19-
- pip install -U --pre $DJANGO
19+
- pip install -U $DJANGO
2020
- python -c 'from __future__ import print_function; import django; print("Django " + django.get_version())'
2121

2222
script: coverage run setup.py test
@@ -42,6 +42,6 @@ matrix:
4242
- python: 3.5
4343
env: DJANGO="Django>=1.8,<1.9"
4444
- python: 3.5
45-
env: DJANGO="Django>=1.9a,<1.10"
45+
env: DJANGO="Django>=1.9,<1.10"
4646

4747
after_success: codecov

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ deps =
3535
django16: Django>=1.6,<1.7
3636
django17: Django>=1.7,<1.8
3737
django18: Django>=1.8,<1.9
38-
django19: Django>=1.9a,<1.10
38+
django19: Django>=1.9,<1.10
3939
djangotrunk: https://github.com/django/django/tarball/master
4040
commands = coverage run -a --branch setup.py test

0 commit comments

Comments
 (0)