Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyblackbird/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import serial
import socket
from functools import wraps
from serial_asyncio import create_serial_connection
from serial_asyncio_fast import create_serial_connection
from threading import RLock

_LOGGER = logging.getLogger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pyserial>=3.4
pyserial-asyncio>=0.4
pyserial-asyncio-fast>=0.7
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
author='Ben Kools',
author_email='koolsb@my.uwstout.edu',
license='MIT',
install_requires=['pyserial>=3.4','pyserial-asyncio>=0.4'],
install_requires=['pyserial>=3.4','pyserial-asyncio-fast>=0.7'],
packages=['pyblackbird'],
classifiers=['Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.5'],
Expand Down