Skip to content

Commit

Permalink
Oh by the way Python 3.5 seems to work fine :-)
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Feb 20, 2016
1 parent 6a4134c commit c55b1c6
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ python:
- "2.6"
- "2.7"
- "3.4"
- "3.5"
- "pypy"
before_install:
- sudo apt-get update -qq
Expand All @@ -14,7 +15,7 @@ install:
- LC_ALL=C pip install .
script:
- make check
- coverage run --source=executor setup.py test
- coverage run setup.py test
- coverage report --fail-under=90
after_success:
- coveralls
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ escaping of arguments and error checking:
what's called a "command pool". The concurrency level can be customized and
of course both local and remote commands are supported.

The package is currently tested on Python 2.6, 2.7, 3.4 and PyPy. For usage
instructions please refer to following sections and the documentation_.
The package is currently tested on Python 2.6, 2.7, 3.4, 3.5 and PyPy. For
usage instructions please refer to following sections and the documentation_.

.. contents::
:local:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
coloredlogs >= 3.5
fasteners >= 0.14.1
humanfriendly >= 1.19
humanfriendly >= 1.44.2
property-manager >= 1.2
six >= 1.9.0
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ def get_absolute_path(*args):
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# directory.

[tox]
envlist = py26, py27, py34, pypy
envlist = py26, py27, py34, py35, pypy

[testenv]
deps =
Expand Down

0 comments on commit c55b1c6

Please sign in to comment.