Skip to content

Commit a966938

Browse files
committed
Remove py2.6 support
1 parent 62b4253 commit a966938

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ before_script:
33

44
language: python
55
python:
6-
- 2.6
76
- 2.7
87
- 3.3
98
- 3.4

CHANGES.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ Changelog
44
Here you can see the full list of changes between each SQLAlchemy-Searchable release.
55

66

7-
0.9.4 (2016-03-31)
7+
0.10.0 (2016-03-31)
88
^^^^^^^^^^^^^^^^^^
99

1010
- Fixed unicode parsing in search query parser, #42
11+
- Removed Python 2.6 support
1112

1213

1314
0.9.3 (2015-05-31)

sqlalchemy_searchable/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from .parser import SearchQueryParser
1111
from .vectorizers import Vectorizer
1212

13-
__version__ = '0.9.4'
13+
__version__ = '0.10.0'
1414

1515

1616
parser = SearchQueryParser()

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[tox]
2-
envlist = py26,py27,py33,py34,pypy,pypy3
2+
envlist = py27,py33,py34,pypy,pypy3
33

44
[testenv]
55
deps=
66
pytest>=2.2.3
77
pypy,pypy3: psycopg2cffi>=2.6.1
8-
py26,py27,py33,py34: psycopg2>=2.4.6
8+
py27,py33,py34: psycopg2>=2.4.6
99
commands=py.test {posargs}

0 commit comments

Comments
 (0)