Skip to content

Commit

Permalink
bump the version number
Browse files Browse the repository at this point in the history
  • Loading branch information
michiya committed Jun 2, 2016
1 parent dce0734 commit d494e8d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Microsoft SQL Server and Azure SQL Database.
Features
--------

- Supports Django 1.8.10
- Supports Django 1.8.13
- Supports Microsoft SQL Server 2005, 2008/2008R2, 2012, 2014, 2016 and
Azure SQL Database
- Supports LIMIT+OFFSET and offset w/o LIMIT emulation.
Expand All @@ -29,7 +29,7 @@ Features
Dependencies
------------

- Django 1.8.10
- Django 1.8.13
- pyodbc 3.0 or newer

Installation
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

setup(
name='django-pyodbc-azure',
version='1.8.10.0',
version='1.8.13.0',
description='Django backend for Microsoft SQL Server and Azure SQL Database using pyodbc',
long_description=open('README.rst').read(),
author='Michiya Takahashi',
Expand All @@ -29,7 +29,7 @@
license='BSD',
packages=['sql_server', 'sql_server.pyodbc'],
install_requires=[
'Django>=1.8.10,<1.9',
'Django>=1.8.13,<1.9',
'pyodbc>=3.0',
],
classifiers=CLASSIFIERS,
Expand Down
2 changes: 1 addition & 1 deletion sql_server/pyodbc/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from django.core.exceptions import ImproperlyConfigured
from django import VERSION
if VERSION[:3] < (1,8,10) or VERSION[:2] >= (1,9):
if VERSION[:3] < (1,8,13) or VERSION[:2] >= (1,9):
raise ImproperlyConfigured("Django %d.%d.%d is not supported." % VERSION[:3])

try:
Expand Down

0 comments on commit d494e8d

Please sign in to comment.