Skip to content

Commit 67337a4

Browse files
committed
3.1.0
1 parent b242a70 commit 67337a4

File tree

3 files changed

+68
-8
lines changed

3 files changed

+68
-8
lines changed

.travis.yml

Lines changed: 36 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,40 @@
1+
sudo: false
12
language: python
2-
33
python:
4-
- 2.7
5-
4+
- "2.7"
5+
- "3.3"
6+
- "3.4"
7+
- "3.5"
8+
- "3.6"
9+
env:
10+
- DJANGO=1.8
11+
- DJANGO=1.9
12+
- DJANGO=1.10
13+
- DJANGO=1.11
14+
- DJANGO=master
15+
matrix:
16+
exclude:
17+
- python: "3.3"
18+
env: DJANGO=1.9
19+
- python: "3.3"
20+
env: DJANGO=1.10
21+
- python: "3.3"
22+
env: DJANGO=1.11
23+
- python: "2.7"
24+
env: DJANGO=master
25+
- python: "3.3"
26+
env: DJANGO=master
27+
- python: "3.4"
28+
env: DJANGO=master
29+
- python: "3.6"
30+
env: DJANGO=1.8
31+
- python: "3.6"
32+
env: DJANGO=1.9
33+
- python: "3.6"
34+
env: DJANGO=1.10
635
install:
7-
- pip install flake8
8-
- pip install -e .
9-
36+
- pip install tox coveralls
1037
script:
11-
- flake8 --max-line-length=100 --max-complexity=10 --statistics --benchmark django_forms_bootstrap
38+
- tox -e py${TRAVIS_PYTHON_VERSION//[.]/}-$DJANGO
39+
after_success:
40+
- coveralls

django_forms_bootstrap/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.0.1"
1+
__version__ = "3.1.0"

tox.ini

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
[flake8]
2+
ignore = E265,E501
3+
max-line-length = 100
4+
max-complexity = 10
5+
exclude = migrations/*,docs/*
6+
7+
[tox]
8+
envlist =
9+
py27-{1.8,1.9,1.10,1.11},
10+
py33-{1.8},
11+
py34-{1.8,1.9,1.10,1.11},
12+
py35-{1.8,1.9,1.10,1.11,master}
13+
py36-{1.11,master}
14+
15+
[testenv]
16+
deps =
17+
coverage == 4.3.4
18+
flake8 == 3.3.0
19+
1.8: Django>=1.8,<1.9
20+
1.9: Django>=1.9,<1.10
21+
1.10: Django>=1.10,<1.11
22+
1.11: Django>=1.11,<1.12
23+
master: https://github.com/django/django/tarball/master
24+
usedevelop = True
25+
setenv =
26+
LANG=en_US.UTF-8
27+
LANGUAGE=en_US:en
28+
LC_ALL=en_US.UTF-8
29+
commands =
30+
flake8 django_forms_bootstrap
31+
coverage run setup.py test

0 commit comments

Comments
 (0)