From dec2a7f7bf24a2c281350771eb2ac49e57c152bb Mon Sep 17 00:00:00 2001 From: Jan Luebbe Date: Mon, 20 Mar 2017 10:49:42 +0100 Subject: [PATCH] setup: require pyserial 3.3 This includes the fix for the Python 3 releated bug in the RFC2217 support (pyserial/pyserial#180). Signed-off-by: Jan Luebbe --- dev-requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-requirements.txt b/dev-requirements.txt index 938d5859d..2ca036af9 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -3,7 +3,7 @@ Sphinx attrs>=16.3 crossbar pexpect -pyserial +pyserial>=3.3 pytest pytest-cache pytest-cov diff --git a/setup.py b/setup.py index e582ea697..9bf5e7494 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ 'attrs', 'jinja2', 'pexpect', - 'pyserial', + 'pyserial>=3.3', 'pytest', 'pyyaml', 'pyudev',