Skip to content

Commit 042b6a5

Browse files
committed
bump the version number
1 parent c42bd21 commit 042b6a5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Microsoft SQL Server and Azure SQL Database.
1717
Features
1818
--------
1919

20-
- Supports Django 1.9.3
20+
- Supports Django 1.9.6
2121
- Supports Microsoft SQL Server 2005, 2008/2008R2, 2012, 2014, 2016 and
2222
Azure SQL Database
2323
- Supports LIMIT+OFFSET and offset w/o LIMIT emulation.
@@ -29,7 +29,7 @@ Features
2929
Dependencies
3030
------------
3131

32-
- Django 1.9.3
32+
- Django 1.9.6
3333
- pyodbc 3.0 or newer
3434

3535
Installation

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
setup(
2020
name='django-pyodbc-azure',
21-
version='1.9.3.0',
21+
version='1.9.6.0',
2222
description='Django backend for Microsoft SQL Server and Azure SQL Database using pyodbc',
2323
long_description=open('README.rst').read(),
2424
author='Michiya Takahashi',
@@ -27,7 +27,7 @@
2727
license='BSD',
2828
packages=['sql_server', 'sql_server.pyodbc'],
2929
install_requires=[
30-
'Django>=1.9.3,<1.10',
30+
'Django>=1.9.6,<1.10',
3131
'pyodbc>=3.0',
3232
],
3333
classifiers=CLASSIFIERS,

sql_server/pyodbc/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
from django.core.exceptions import ImproperlyConfigured
1010
from django import VERSION
11-
if VERSION[:3] < (1,9,3) or VERSION[:2] >= (1,10):
11+
if VERSION[:3] < (1,9,6) or VERSION[:2] >= (1,10):
1212
raise ImproperlyConfigured("Django %d.%d.%d is not supported." % VERSION[:3])
1313

1414
try:

0 commit comments

Comments
 (0)