Skip to content

Commit

Permalink
Add py3.4 to tests, and clarify readme
Browse files Browse the repository at this point in the history
The readme said python <2.5 was not tested, when in fact
python earlier than 2.6 is not tested.
  • Loading branch information
nikolas committed May 4, 2015
1 parent 57f93ea commit 76fc02a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -4,6 +4,7 @@ python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "pypy"
install: # No dependencies.
script: python setup.py test
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -19,7 +19,7 @@ Installation

To install ``shortuuid`` you need:

* Python 2.5 or later in the 2.x line (earlier than 2.5 not tested).
* Python 2.5 or later in the 2.x line (earlier than 2.6 not tested).

If you have the dependencies, you have multiple options of installation:

Expand Down
5 changes: 4 additions & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py26, py27, py32, py33, pypy
envlist = py26, py27, py32, py33, py34, pypy

[testenv]
setenv =
Expand All @@ -18,5 +18,8 @@ basepython = python3.2
[testenv:py33]
basepython = python3.3

[testenv:py34]
basepython = python3.4

[testenv:pypy]
basepython = pypy

0 comments on commit 76fc02a

Please sign in to comment.