From f8a3d2b3db86a9644e0585c954d36bd87c454494 Mon Sep 17 00:00:00 2001 From: Philipp Maier Date: Fri, 5 May 2023 14:01:28 +0200 Subject: requirements.txt: allow cmd2 versions greater than 1.5 Since we now have fixed the compatibility issues with recent cmd2 versions, we may allow also versions greater than 1.5 in the requirements.txt Change-Id: I87702c5250a3660c84458939167bffdca9c06059 --- README.md | 2 +- requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1246d94..da8dffc 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Please install the following dependencies: - pyscard - pyserial - pytlv - - cmd2 >= 1.3.0 but < 2.0.0 + - cmd2 >= 1.5.0 - jsonpath-ng - construct >= 2.9.51 - bidict diff --git a/requirements.txt b/requirements.txt index bfdbd62..fb94472 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ pyscard pyserial pytlv -cmd2==1.5 +cmd2>=1.5 jsonpath-ng construct>=2.9.51 bidict diff --git a/setup.py b/setup.py index 132dfe2..17edad9 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( "pyscard", "serial", "pytlv", - "cmd2 >= 1.3.0, < 2.0.0", + "cmd2 >= 1.5.0", "jsonpath-ng", "construct >= 2.9.51", "bidict", -- cgit v1.2.3