From 6ad1eccf55c6f50772b97f3d1da7c3d41bcec0f1 Mon Sep 17 00:00:00 2001 From: "MisterYsLab@gmail.com" Date: Thu, 18 Feb 2016 07:38:52 -0500 Subject: [PATCH] Assure 7 bit bytes for firmata --- PyMata/pymata.py | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/PyMata/pymata.py b/PyMata/pymata.py index 4bb8a73..7bcb06e 100644 --- a/PyMata/pymata.py +++ b/PyMata/pymata.py @@ -121,7 +121,7 @@ def __init__(self, port_id='/dev/ttyACM0', bluetooth=True, verbose=True): if self.verbose: print("\nPython Version %s" % sys.version) - print('\nPyMata version 2.11 Copyright(C) 2013-15 Alan Yorinks All rights reserved.') + print('\nPyMata version 2.12 Copyright(C) 2013-16 Alan Yorinks All rights reserved.') # Instantiate the serial support class self.transport = PyMataSerial(port_id, self.command_deque) diff --git a/setup.py b/setup.py index 3cb843c..b1418cf 100644 --- a/setup.py +++ b/setup.py @@ -5,13 +5,13 @@ setup( name='PyMata', packages=['PyMata'], - version='2.11', + version='2.12', description="A Python Protocol Abstraction Library For Arduino Firmata", author='Alan Yorinks', author_email='MisterYsLab@gmail.com', url='https://github.com/MrYsLab/PyMata', download_url='https://github.com/MrYsLab/PyMata', - install_requires=['pyserial == 2.7'], + install_requires=['pyserial >= 2.7'], keywords=['Firmata', 'Arduino', 'Protocol'], classifiers=[ 'Development Status :: 5 - Production/Stable', @@ -22,7 +22,7 @@ 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', 'Topic :: Utilities', 'Topic :: Home Automation', ],