Skip to content

Commit

Permalink
Fixed setup to match requirements.
Browse files Browse the repository at this point in the history
  • Loading branch information
f34rdotcom committed Dec 22, 2019
1 parent cf9c940 commit e9cc834
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ def readme():

extra_requirements = []
if sys.version_info < (3,):
extra_requirements.append('future==0.14.3')
extra_requirements.append('future>=0.14.3')

setup(name='alarmdecoder',
version='1.13.8',
version='1.13.9',
description='Python interface for the AlarmDecoder (AD2) family '
'of alarm devices which includes the AD2USB, AD2SERIAL and AD2PI.',
long_description=readme(),
Expand All @@ -36,7 +36,7 @@ def readme():
license='MIT',
packages=['alarmdecoder', 'alarmdecoder.devices', 'alarmdecoder.event', 'alarmdecoder.messages', 'alarmdecoder.messages.lrr'],
install_requires=[
'pyserial==2.7',
'pyserial>=2.7',
] + extra_requirements,
test_suite='nose.collector',
tests_require=['nose', 'mock'],
Expand Down

0 comments on commit e9cc834

Please sign in to comment.