Skip to content

Commit

Permalink
Drop support for Python 2.6, as pySerial did.
Browse files Browse the repository at this point in the history
kipe committed Jan 7, 2016
1 parent 42e29cc commit 6fdd86f
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
enum-compat>=0.0.2
pyserial>=2.7
pyserial>=3.0
beautifulsoup4>=4.3.2
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@

setup(
name='enocean',
version='0.25',
version='0.30',
description='EnOcean serial protocol implementation',
author='Kimmo Huoman',
author_email='[email protected]',
@@ -24,6 +24,6 @@
},
install_requires=[
'enum-compat>=0.0.2',
'pyserial>=2.7',
'pyserial>=3.0',
'beautifulsoup4>=4.3.2',
])

0 comments on commit 6fdd86f

Please sign in to comment.