File tree 6 files changed +12
-24
lines changed 6 files changed +12
-24
lines changed Original file line number Diff line number Diff line change 1
- __version__ = '0.1.2 '
1
+ __version__ = '0.1.3 '
2
2
3
3
from .widgets import BootstrapSelect # noqa
Original file line number Diff line number Diff line change 1
- from django .contrib . staticfiles . templatetags .staticfiles import static
1
+ from django .templatetags .static import static
2
2
from django import forms
3
3
from django .forms import Select
4
4
from django .utils .encoding import force_text
Original file line number Diff line number Diff line change 1
1
from django .contrib import admin
2
2
from django import forms
3
- from django .contrib . staticfiles . templatetags .staticfiles import static
3
+ from django .templatetags .static import static
4
4
from django .utils .html import escape
5
5
6
6
from .models import Icon
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.1.2
2
+ current_version = 0.1.3
3
3
commit = True
4
4
tag = True
5
5
@@ -12,7 +12,7 @@ universal = 1
12
12
13
13
[flake8]
14
14
ignore = D203
15
- exclude =
15
+ exclude =
16
16
bootstrap_select/migrations,
17
17
example/example_app/migrations,
18
18
.git,
Original file line number Diff line number Diff line change 52
52
classifiers = [
53
53
'Development Status :: 3 - Alpha' ,
54
54
'Framework :: Django' ,
55
- 'Framework :: Django :: 1.8' ,
56
- 'Framework :: Django :: 1.9' ,
57
- 'Framework :: Django :: 1.10' ,
58
- 'Framework :: Django :: 1.11' ,
55
+ 'Framework :: Django :: 2.2' ,
56
+ 'Framework :: Django :: 3.2' ,
59
57
'Intended Audience :: Developers' ,
60
58
'License :: OSI Approved :: BSD License' ,
61
59
'Natural Language :: English' ,
62
- 'Programming Language :: Python :: 2' ,
63
- 'Programming Language :: Python :: 2.7' ,
64
60
'Programming Language :: Python :: 3' ,
65
- 'Programming Language :: Python :: 3.4' ,
66
- 'Programming Language :: Python :: 3.5' ,
61
+ 'Programming Language :: Python :: 3.7' ,
67
62
],
68
63
)
Original file line number Diff line number Diff line change 1
1
[tox]
2
2
envlist =
3
- {py27,py34,py35}-django-18
4
- {py27,py34,py35}-django-19
5
- {py27,py34,py35}-django-110
6
- {py27,py34,py35}-django-111
3
+ {py37}-django-{22,32}
7
4
8
5
[testenv]
9
6
setenv =
10
7
PYTHONPATH = {toxinidir}:{toxinidir}/bootstrap_select
11
8
commands = coverage run --source bootstrap_select runtests.py
12
9
deps =
13
- django-18: Django>=1.8,<1.9
14
- django-19: Django>=1.9,<1.10
15
- django-110: Django>=1.10,<1.11
16
- django-111: Django>=1.11
10
+ django-22: Django>=2.2, <3
11
+ django-32: Django>=3.2, <4
17
12
-r{toxinidir}/requirements_test.txt
18
13
basepython =
19
- py35: python3.5
20
- py34: python3.4
21
- py27: python2.7
14
+ py37: python3.7
You can’t perform that action at this time.
0 commit comments