Skip to content

Commit

Permalink
Merge pull request #44 from nutechsoftware/dev
Browse files Browse the repository at this point in the history
Fixed setup to match requirements.
  • Loading branch information
f34rdotcom authored Dec 22, 2019
2 parents bc9371e + e9cc834 commit 8463a55
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 8463a55

Please sign in to comment.