Repository: libcloud Updated Branches: refs/heads/trunk 04884dca3 -> e24b498c5
Document and verify that we support Python 3.4 Closes #279 Signed-off-by: Tomaz Muraus <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/e24b498c Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/e24b498c Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/e24b498c Branch: refs/heads/trunk Commit: e24b498c59bea942266fa140fc158e5dbc285630 Parents: 04884dc Author: Alex Gaynor <[email protected]> Authored: Mon Apr 21 14:57:40 2014 -0700 Committer: Tomaz Muraus <[email protected]> Committed: Tue Apr 22 10:27:34 2014 +0200 ---------------------------------------------------------------------- setup.py | 1 + tox.ini | 8 +++++++- 2 files changed, 8 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/e24b498c/setup.py ---------------------------------------------------------------------- diff --git a/setup.py b/setup.py index 41f2833..cbc2e74 100644 --- a/setup.py +++ b/setup.py @@ -255,4 +255,5 @@ setup( 'Programming Language :: Python :: 3.1', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: Implementation :: PyPy']) http://git-wip-us.apache.org/repos/asf/libcloud/blob/e24b498c/tox.ini ---------------------------------------------------------------------- diff --git a/tox.ini b/tox.ini index 66dc270..7dee77e 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py25,py26,py27,pypy,py32,py33,lint +envlist = py25,py26,py27,pypy,py32,py33,py34,lint setenv = PIP_USE_MIRRORS=1 @@ -38,6 +38,12 @@ deps = mock deps = mock lockfile +[testenv:py34] +# At some point we can switch to use the stdlib provided mock module on +# Python3.4+ +deps = mock + lockfile + [testenv:docs] deps = sphinx basepython = python2.7
