Skip to content

Commit 1545bb0

Browse files
committed
bump the version number
1 parent 6dccdb4 commit 1545bb0

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ django-pyodbc-azure
77
.. image:: http://img.shields.io/pypi/l/django-pyodbc-azure.svg?style=flat
88
:target: http://opensource.org/licenses/BSD-3-Clause
99

10-
*django-pyodbc-azure* is a refined fork of
10+
*django-pyodbc-azure* is a modern fork of
1111
`django-pyodbc <https://github.com/avidal/django-pyodbc>`__, a
1212
`Django <http://djangoproject.com/>`__ Microsoft SQL Server external
1313
DB backend that uses ODBC by employing the
@@ -17,8 +17,8 @@ Microsoft SQL Server and Azure SQL Database.
1717
Features
1818
--------
1919

20-
- Supports Django 1.11.8
21-
- Supports Microsoft SQL Server 2005, 2008/2008R2, 2012, 2014, 2016 and
20+
- Supports Django 1.11.9
21+
- Supports Microsoft SQL Server 2005, 2008/2008R2, 2012, 2014, 2016, 2017 and
2222
Azure SQL Database
2323
- Supports LIMIT+OFFSET and offset w/o LIMIT emulation.
2424
- Passes most of the tests of the Django test suite.
@@ -31,7 +31,7 @@ Features
3131
Dependencies
3232
------------
3333

34-
- Django 1.11.8
34+
- Django 1.11.9
3535
- pyodbc 3.0 or newer
3636

3737
Installation

setup.py

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

2020
setup(
2121
name='django-pyodbc-azure',
22-
version='1.11.8.0',
22+
version='1.11.9.0',
2323
description='Django backend for Microsoft SQL Server and Azure SQL Database using pyodbc',
2424
long_description=open('README.rst').read(),
2525
author='Michiya Takahashi',
@@ -28,7 +28,7 @@
2828
license='BSD',
2929
packages=['sql_server', 'sql_server.pyodbc'],
3030
install_requires=[
31-
'Django>=1.11.8,<1.12',
31+
'Django>=1.11.9,<2.0',
3232
'pyodbc>=3.0',
3333
],
3434
classifiers=CLASSIFIERS,

sql_server/pyodbc/base.py

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

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

1313
try:

0 commit comments

Comments
 (0)