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: