Skip to content

Commit

Permalink
Merge branch 'release/4.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
wolph committed Sep 7, 2018
2 parents f09559d + a9b034d commit 4df26b8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
include tags_input
recursive-include tags_input *.py
recursive-include tags_input/templates *.html
recursive-include tags_input/static/js *.js
recursive-include tags_input/static/css *.css
recursive-include tags_input/static/css/base/images *.png
recursive-include tags_input/static *.js
recursive-include tags_input/static *.css
recursive-include tags_input/static *.png

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def run_tests(self):
},
extras_require={
'docs': [
'django',
'django<2',
'mock',
'sphinx>=1.7.2',
],
Expand Down
2 changes: 1 addition & 1 deletion tags_input/__about__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__package_name__ = 'django-tags-input'
__version__ = '4.1.0'
__version__ = '4.2.0'
__author__ = 'Rick van Hattem'
__author_email__ = 'wolph@wol.ph'
__description__ = ' '.join('''
Expand Down
2 changes: 1 addition & 1 deletion tags_input/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def build_attrs(self, base_attrs, extra_attrs=None, **kwargs):
attrs.update(extra_attrs)
return attrs

def render(self, name, value, attrs=None, choices=()):
def render(self, name, value, attrs=None, choices=(), renderer=None):
context = self.build_attrs(attrs, name=name)
context['on_add_tag'] = self.on_add_tag
context['on_remove_tag'] = self.on_remove_tag
Expand Down

0 comments on commit 4df26b8

Please sign in to comment.