From bf1845ec9f98f639837ae61e2ad3943becf81797 Mon Sep 17 00:00:00 2001 From: "MisterYsLab@gmail.com" Date: Thu, 21 Apr 2016 17:08:11 -0400 Subject: [PATCH] v2.12/13 updates --- documentation/changelog.md | 8 ++++++++ pymata_aio/private_constants.py | 2 +- pymata_aio/pymata_core.py | 1 - setup.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/documentation/changelog.md b/documentation/changelog.md index 00e8690..1001d79 100644 --- a/documentation/changelog.md +++ b/documentation/changelog.md @@ -1,5 +1,13 @@ # Change Log +## Release 2.13 + +21 April 2016 + +* Added additional Arduino board type detection +* Updated setup.py to bring in specific versions of pyserial and autobahn. +* Version 2.12 not accepted on PyPi + ## Release 2.12 21 April 2016 diff --git a/pymata_aio/private_constants.py b/pymata_aio/private_constants.py index 92b6a2b..5008e76 100644 --- a/pymata_aio/private_constants.py +++ b/pymata_aio/private_constants.py @@ -70,7 +70,7 @@ class PrivateConstants: SYSEX_REALTIME = 0x7F # MIDI Reserved for realtime messages # reserved for PyMata - PYMATA_VERSION = "2.12" + PYMATA_VERSION = "2.13" # each byte represents a digital port # and its value contains the current port settings diff --git a/pymata_aio/pymata_core.py b/pymata_aio/pymata_core.py index ac7d58a..4e0ade7 100644 --- a/pymata_aio/pymata_core.py +++ b/pymata_aio/pymata_core.py @@ -1679,7 +1679,6 @@ def _discover_port(self): 'com14', 'com15', 'com16', 'com17', 'com18', 'com19', 'com20', 'com21', 'com1', 'end' ] - locations = glob.glob('/dev/tty.[wchusb*]*') + locations detected = None for device in locations: diff --git a/setup.py b/setup.py index e3b0495..055add3 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='pymata-aio', - version='2.12', + version='2.13', packages=['pymata_aio'], install_requires=['pyserial==2.7', 'autobahn[asyncio]==0.10.4'], url='https://github.com/MrYsLab/pymata-aio/wiki',