From 6fdd86ff08f69922664f2360fdf4168fce31a7e2 Mon Sep 17 00:00:00 2001 From: Kimmo Huoman Date: Thu, 7 Jan 2016 22:27:37 +0200 Subject: [PATCH] Drop support for Python 2.6, as pySerial did. --- .travis.yml | 1 - requirements.txt | 2 +- setup.py | 4 ++-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index aef6fd8..a35064f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,5 @@ language: python python: - - "2.6" - "2.7" - "3.2" - "3.3" diff --git a/requirements.txt b/requirements.txt index 27355d4..fb7ca9a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ enum-compat>=0.0.2 -pyserial>=2.7 +pyserial>=3.0 beautifulsoup4>=4.3.2 diff --git a/setup.py b/setup.py index ff56edc..a774ca4 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='enocean', - version='0.25', + version='0.30', description='EnOcean serial protocol implementation', author='Kimmo Huoman', author_email='kipenroskaposti@gmail.com', @@ -24,6 +24,6 @@ }, install_requires=[ 'enum-compat>=0.0.2', - 'pyserial>=2.7', + 'pyserial>=3.0', 'beautifulsoup4>=4.3.2', ])