Upgade Django version to 1.11.6

This commit is contained in:
Axelio 2017-10-21 18:40:42 -03:00
parent 07fbe0ee4e
commit 56a73310f3
3 changed files with 4 additions and 4 deletions

View File

@ -34,7 +34,7 @@ production-ready Django projects quickly.
Features
---------
* For Django 1.10
* For Django 1.11.6
* Works with Python 3.4.x or 3.5.x. Python 3.6 is experimental
* Renders Django projects with 100% starting test coverage
* Twitter Bootstrap_ v4.0.0 - beta 1 (`maintained Foundation fork`_ also available)

View File

@ -10,7 +10,7 @@ except ImportError:
# Our version ALWAYS matches the version of Django we support
# If Django has a new release, we branch, tag, then update this setting after the tag.
version = '1.10.7'
version = '1.11.6'
if sys.argv[-1] == 'tag':
os.system('git tag -a %s -m "version %s"' % (version, version))
@ -34,7 +34,7 @@ setup(
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11.6',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',

View File

@ -6,7 +6,7 @@ wheel==0.30.0
# Bleeding edge Django
django==1.10.8 # pyup: >=1.10,<1.11
django==1.11.6 # pyup: <=1.11.6
# Configuration
django-environ==0.4.4