From 2be54e6ed718dd3181d990b261cec635670f6a46 Mon Sep 17 00:00:00 2001 From: Michiya Takahashi Date: Mon, 11 Jun 2018 01:28:50 +0900 Subject: [PATCH] bump the version number --- README.rst | 4 ++-- setup.py | 4 ++-- sql_server/pyodbc/base.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 22036c1f..e0effe09 100644 --- a/README.rst +++ b/README.rst @@ -17,7 +17,7 @@ Microsoft SQL Server and Azure SQL Database. Features -------- -- Supports Django 1.11.12 +- Supports Django 1.11.13 - Supports Microsoft SQL Server 2005, 2008/2008R2, 2012, 2014, 2016, 2017 and Azure SQL Database - Passes most of the tests of the Django test suite @@ -30,7 +30,7 @@ Features Dependencies ------------ -- Django 1.11.12 +- Django 1.11.13 - pyodbc 3.0 or newer Installation diff --git a/setup.py b/setup.py index 4e62c54f..5626ad49 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( name='django-pyodbc-azure', - version='1.11.12.1', + version='1.11.13.0', description='Django backend for Microsoft SQL Server and Azure SQL Database using pyodbc', long_description=open('README.rst').read(), author='Michiya Takahashi', @@ -28,7 +28,7 @@ license='BSD', packages=['sql_server', 'sql_server.pyodbc'], install_requires=[ - 'Django>=1.11.12,<2.0', + 'Django>=1.11.13,<2.0', 'pyodbc>=3.0', ], classifiers=CLASSIFIERS, diff --git a/sql_server/pyodbc/base.py b/sql_server/pyodbc/base.py index e9e751ab..1b0e813e 100644 --- a/sql_server/pyodbc/base.py +++ b/sql_server/pyodbc/base.py @@ -8,7 +8,7 @@ from django.core.exceptions import ImproperlyConfigured from django import VERSION -if VERSION[:3] < (1,11,12) or VERSION[:2] >= (2,0): +if VERSION[:3] < (1,11,13) or VERSION[:2] >= (2,0): raise ImproperlyConfigured("Django %d.%d.%d is not supported." % VERSION[:3]) try: