diff --git a/.travis.yml b/.travis.yml index dafc1685..b7981a23 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ python: - "2.7" - "3.2" - "3.3" + - "3.4" install: - pip install -r requirements.txt --use-mirrors script: python setup.py install diff --git a/README.rst b/README.rst index 7d757ba8..34c208d5 100644 --- a/README.rst +++ b/README.rst @@ -27,7 +27,7 @@ It uses the `psutil`_ library to get information from your system. Requirements ============ -- ``python >= 2.6`` (tested with version 2.6, 2.7, 3.2, 3.3) +- ``python >= 2.6`` (tested with version 2.6, 2.7, 3.2, 3.3, 3.4) - ``psutil >= 2.0.0`` - ``setuptools`` diff --git a/setup.py b/setup.py index 90b5f812..fc411c56 100755 --- a/setup.py +++ b/setup.py @@ -75,6 +75,7 @@ setup( 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.2', - 'Programming Language :: Python :: 3.3' + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4' ] )