Skip to content

Commit

Permalink
Add support for Python 3.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Apr 4, 2016
1 parent 73ab187 commit 8fa0c81
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -10,6 +10,8 @@ matrix:
env: TOXENV=py33
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35

install:
- travis_retry pip install tox
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.txt
@@ -1,6 +1,8 @@
0.4 (unreleased)
----------------

- Add support for Python 3.5.

- Drop support for Python 2.6 and 3.2.

- Don't modify queries attribute when optimizing And or Or, return a new
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -81,6 +81,7 @@ def errprint(x):
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py33,py34,cover
py27,py33,py34,py35,cover

[testenv]
commands =
Expand Down

0 comments on commit 8fa0c81

Please sign in to comment.