Skip to content

Commit 2be54e6

Browse files
committed
bump the version number
1 parent 09d7ab5 commit 2be54e6

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.11.12
20+
- Supports Django 1.11.13
2121
- Supports Microsoft SQL Server 2005, 2008/2008R2, 2012, 2014, 2016, 2017 and
2222
Azure SQL Database
2323
- Passes most of the tests of the Django test suite
@@ -30,7 +30,7 @@ Features
3030
Dependencies
3131
------------
3232

33-
- Django 1.11.12
33+
- Django 1.11.13
3434
- pyodbc 3.0 or newer
3535

3636
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.12.1',
22+
version='1.11.13.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.12,<2.0',
31+
'Django>=1.11.13,<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
@@ -8,7 +8,7 @@
88
from django.core.exceptions import ImproperlyConfigured
99
from django import VERSION
1010

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

1414
try:

0 commit comments

Comments
 (0)