laforge has submitted this change. ( https://gerrit.osmocom.org/c/pysim/+/32632 )
Change subject: requirements.txt: allow cmd2 versions greater than 1.5 ......................................................................
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 --- M README.md M requirements.txt M setup.py 3 files changed, 16 insertions(+), 3 deletions(-)
Approvals: fixeria: Looks good to me, but someone else must approve Jenkins Builder: Verified laforge: Looks good to me, approved
diff --git a/README.md b/README.md index 1246d94..da8dffc 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ - 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 @@ "pyscard", "serial", "pytlv", - "cmd2 >= 1.3.0, < 2.0.0", + "cmd2 >= 1.5.0", "jsonpath-ng", "construct >= 2.9.51", "bidict",