Skip to content

Commit a476080

Browse files
committed
Merge branch 'azure-1.11' into azure-2.0
2 parents a5be65a + 10da334 commit a476080

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

README.rst

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

20-
- Supports Django 2.0.1
20+
- Supports Django 2.0.3
2121
- Supports Microsoft SQL Server 2008/2008R2, 2012, 2014, 2016, 2017 and
2222
Azure SQL Database
23-
- Supports LIMIT+OFFSET and offset w/o LIMIT emulation
2423
- Passes most of the tests of the Django test suite
2524
- Compatible with
2625
`Micosoft ODBC Driver for SQL Server <https://docs.microsoft.com/en-us/sql/connect/odbc/microsoft-odbc-driver-for-sql-server>`__,
2726
`SQL Server Native Client <https://msdn.microsoft.com/en-us/library/ms131321(v=sql.120).aspx>`__,
28-
and `FreeTDS <http://www.freetds.org/>`__ ODBC drivers.
27+
and `FreeTDS <http://www.freetds.org/>`__ ODBC drivers
2928

3029
Dependencies
3130
------------
3231

33-
- Django 2.0.1
32+
- Django 2.0.3
3433
- pyodbc 3.0 or newer
3534

3635
Installation

setup.py

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

1818
setup(
1919
name='django-pyodbc-azure',
20-
version='2.0.1.0',
20+
version='2.0.3.0',
2121
description='Django backend for Microsoft SQL Server and Azure SQL Database using pyodbc',
2222
long_description=open('README.rst').read(),
2323
author='Michiya Takahashi',
@@ -26,7 +26,7 @@
2626
license='BSD',
2727
packages=['sql_server', 'sql_server.pyodbc'],
2828
install_requires=[
29-
'Django>=2.0.1,<2.1',
29+
'Django>=2.0.3,<2.1',
3030
'pyodbc>=3.0',
3131
],
3232
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
from django.core.exceptions import ImproperlyConfigured
99
from django import VERSION
1010

11-
if VERSION[:3] < (2,0,1) or VERSION[:2] >= (2,1):
11+
if VERSION[:3] < (2,0,3) or VERSION[:2] >= (2,1):
1212
raise ImproperlyConfigured("Django %d.%d.%d is not supported." % VERSION[:3])
1313

1414
try:

0 commit comments

Comments
 (0)