Skip to content

Commit 1d52b36

Browse files
committedAug 17, 2018
version bump to 1.1.0
1 parent 8f09e5b commit 1d52b36

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed
 

‎setup.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,15 @@ def readme():
77
return f.read()
88

99

10+
version = '1.1.0'
11+
12+
1013
setup(
1114
name='django-recaptcha2',
1215
packages=find_packages(exclude=['samples']),
1316
# package_data={'': ['']},
1417
include_package_data=True,
15-
version='1.0.3',
18+
version=version,
1619
install_requires=[
1720
'requests'
1821
],
@@ -28,15 +31,15 @@ def readme():
2831
author='Andrea Briganti',
2932
author_email='kbytesys@gmail.com',
3033
url='https://github.com/kbytesys/django-recaptcha2',
31-
download_url='https://github.com/kbytesys/django-recaptcha2/tarball/v1.0.3',
34+
download_url='https://github.com/kbytesys/django-recaptcha2/tarball/v%s' % version,
3235
keywords=['django', 'recaptcha', 'recaptcha2'],
3336
license='GNU LGPL v2',
3437
classifiers=[
3538
'Development Status :: 5 - Production/Stable',
3639
'Environment :: Web Environment',
3740
'Intended Audience :: Developers',
3841
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
39-
'Natural Language :: Italian',
42+
'Natural Language :: English',
4043
'Programming Language :: Python',
4144
'Programming Language :: Python :: 3',
4245
'Framework :: Django',

0 commit comments

Comments
 (0)
Please sign in to comment.