Skip to content

Commit cc5676f

Browse files
committed
Changes for Python 3.6 support.
1 parent 86222a7 commit cc5676f

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

bin/travis_env.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ case $TRAVIS_PYTHON_VERSION in
1818
3.5)
1919
PYMSSQL_TEST_DATABASE=pymssql_dev_py35
2020
;;
21+
3.6)
22+
PYMSSQL_TEST_DATABASE=pymssql_dev_py36
23+
;;
2124
*)
2225
echo "Unknown version of Python ($TRAVIS_PYTHON_VERSION)"
2326
;;

docs/freetds.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ You can:
8181

8282
Choose the .zip file appropriate for your architecture (``x86`` vs.
8383
``x86_64``) and your Python version (``vs2008`` for Python 2.7, ``vs2010``
84-
for Python 3.3 and 3.4, ``vs2015`` for Python 3.5).
84+
for Python 3.3 and 3.4, ``vs2015`` for Python 3.5 and 3.6).
8585

8686
Those builds include iconv support (via
8787
`win-iconv <https://github.com/win-iconv/win-iconv>`_ statically linked).
@@ -93,7 +93,7 @@ You can:
9393
To install OpenSSL you'll need the distribution that can be downloaded from
9494
http://www.npcglib.org/~stathis/blog/precompiled-openssl/. Choose the right
9595
.7z file for your Python version (``vs2008`` for Python 2.7, ``vs2010`` for
96-
Python 3.3 and 3.4, ``vs2015`` for Python 3.5).
96+
Python 3.3 and 3.4, ``vs2015`` for Python 3.5 and 3.6).
9797

9898
* Or you can `build it yourself <http://www.freetds.org/userguide/build.htm>`_.
9999

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -463,6 +463,7 @@ def run_tests(self):
463463
"Programming Language :: Python :: 3.3",
464464
"Programming Language :: Python :: 3.4",
465465
"Programming Language :: Python :: 3.5",
466+
"Programming Language :: Python :: 3.6",
466467
"Programming Language :: Python :: Implementation :: CPython",
467468
"Topic :: Database",
468469
"Topic :: Database :: Database Engines/Servers",

0 commit comments

Comments
 (0)