Skip to content

Commit ea28f20

Browse files
committed
Drop support for Python 2.6.
1 parent 8c5f7e3 commit ea28f20

7 files changed

Lines changed: 7 additions & 11 deletions

File tree

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
language: python
22
python:
3-
- 2.6
43
- 2.7
54
- 3.3
65
- 3.4
@@ -11,7 +10,6 @@ before_install:
1110
- travis_retry pip install Sphinx sphinx-rtd-theme
1211
- pip --version
1312
- travis_retry pip install --use-wheel Cython
14-
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then travis_retry pip install unittest2; fi"
1513
install:
1614
- python setup.py install
1715
script:

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ Change Log
44
Version 2.1.2 - To be released
55
==============================
66

7+
General
8+
-------
9+
10+
- Drop support for Python 2.6.
11+
712
Features
813
--------
914

README_building_and_developing.rst

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

88
To build pymssql you should have:
99

10-
* python >= 2.6 including development files. Please research your OS usual
10+
* python >= 2.7 including development files. Please research your OS usual
1111
software distribution channels, e.g, ``python-dev`` or ``python-devel``
1212
packages.
1313
* Cython >= 0.15

bin/hudson.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ cd pymssql
22

33
# Check the Python version
44
case $PYTHON_VERSION in
5-
26)
6-
PYTHON=python2.6
7-
;;
85
27)
96
PYTHON=python2.7
107
;;

bin/travis_env.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ if [ "$TRAVIS_SECURE_ENV_VARS" = "false" ]; then
66
fi
77

88
case $TRAVIS_PYTHON_VERSION in
9-
2.6)
10-
PYMSSQL_TEST_DATABASE=pymssql_dev_py26
11-
;;
129
2.7)
1310
PYMSSQL_TEST_DATABASE=pymssql_dev_py27
1411
;;

docs/intro.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ The pymssql package consists of two modules:
119119
Supported related software
120120
==========================
121121

122-
:Python: Python 2.x: 2.6 or newer. Python 3.x: 3.3 or newer.
122+
:Python: Python 2.x: 2.7 or newer. Python 3.x: 3.3 or newer.
123123
:FreeTDS: 0.82 or newer.
124124
:Cython: 0.15 or newer.
125125
:Microsoft SQL Server: 2005 or newer.

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,6 @@ def run_tests(self):
430430
"Intended Audience :: Developers",
431431
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
432432
"Programming Language :: Python",
433-
"Programming Language :: Python :: 2.6",
434433
"Programming Language :: Python :: 2.7",
435434
"Programming Language :: Python :: 3",
436435
"Programming Language :: Python :: 3.3",

0 commit comments

Comments
 (0)