From eb9acaaf9da44a7df465da5f161176419f627688 Mon Sep 17 00:00:00 2001 From: Alessio Sergi Date: Wed, 18 Nov 2015 13:05:35 +0100 Subject: [PATCH] Add Python 3.5 support --- .travis.yml | 5 +++-- README.rst | 2 +- setup.py | 3 ++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 715fd5dd..c05d72a9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,12 +3,13 @@ python: - "2.7" - "3.3" - "3.4" + - "3.5" - "pypy" install: - pip install -r requirements.txt - pip install coveralls -script: +script: - python setup.py install - coverage run --source=glances unitest.py after_success: - - coveralls \ No newline at end of file + - coveralls diff --git a/README.rst b/README.rst index b04e2a23..1967c020 100644 --- a/README.rst +++ b/README.rst @@ -28,7 +28,7 @@ written in Python. Requirements ============ -- ``python >= 2.6`` or ``>= 3.3`` (tested with version 2.6, 2.7, 3.3, 3.4) +- ``python >= 2.6`` or ``>= 3.3`` (tested with version 2.6, 2.7, 3.3, 3.4, 3.5) - ``psutil >= 2.0.0`` - ``setuptools`` diff --git a/setup.py b/setup.py index 8cdd60ae..650eeb45 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.3', - 'Programming Language :: Python :: 3.4' + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5' ] )