Add Python 3.4 support

Add Python 3.4 to .travis.yml.
This commit is contained in:
Alessio Sergi 2014-05-11 20:00:00 +02:00
parent e0d9302fe7
commit 8d895f1845
3 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -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``

View File

@ -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'
]
)