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 Jun 3, 2016
1 parent 4cddc2e commit b60db02
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
language: python
sudo : false

matrix:
include:
- python: 3.5
env: TOXENV=py35

env:
- TOXENV=py27
- TOXENV=py33
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

- Add decorator for profiling individual functions.

- Add support for Python 3.5.

- Drop support for Python 2.6 and Python 3.2.

2.1 (2015-05-28)
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py33,py34,pypy,coverage,docs
py27,py33,py34,py35,pypy,coverage,docs

[testenv]
commands =
Expand Down

0 comments on commit b60db02

Please sign in to comment.